Is there a nameconflict for cffile action=move?

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • bushnellweb
    New Member
    • Jan 2010
    • 48

    Is there a nameconflict for cffile action=move?

    I am using ColdFusion 8 and I am moving files with
    Code:
    <cffile action="move">
    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
    Code:
    <cffile action="upload">
    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?
  • acoder
    Recognized Expert MVP
    • Nov 2006
    • 16032

    #2
    I think you'll have to manually check, unfortunately.

    Comment

    Working...