> I'm using ColdFusion 9 on Windows with Apache 2 (in case that matters) > and am trying to do a basic cffile action="move" but it appears to be > copying rather than moving (i.e., the file is now in both the source > and destination folders). Does anyone know what could cause that? > > Here's my cffile tag: > <cffile action="move" > source="#arguments.stConfig.ftpFileLocations.pending##local.qFiles.name#" > destination="#arguments.stConfig.ftpFileLocations.badFiles##local.qFiles.name#" > />
Well, a move is basically just a copy followed by a delete. So maybe CF can't delete the file? Maybe it's locked by CF itself, preventing it from being deleted. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ http://training.figleaf.com/ Fig Leaf Software is a Veteran-Owned Small Business (VOSB) on GSA Schedule, and provides the highest caliber vendor-authorized instruction at our training centers, online, or onsite ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Want to reach the ColdFusion community with something they want? Let them know on the House of Fusion mailing lists Archive: http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:329596 Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

