I am using ColdFusion 8 and I am moving files with
it seems that if I am moving a file into a folder where the file is named the same thing, it overwrites.
I know that with
there is a nameconflict attribute. Can I use that on action="move" or will I have to manually check to see if the same file name exists BEFORE moving the files?
Code:
<cffile action="move">
I know that with
Code:
<cffile action="upload">
Comment