RE: CFFILE and spaces in file name (Not Upload)

2013-01-16 Thread Rick Faircloth
What about renaming all the filenames with spaces to remove the spaces, then move them. Use cfdirectory to get a list of the filenames, then loop over the results and rename the files without spaces: cfset newFileName = replace(originalFileName, , , all) / Then use cfdirectory to get the new

CFFILE and spaces in file name (Not Upload)

2013-01-15 Thread Adrian Cesana
I am cleaning up an older site that has grown a bit out of control with all images being dumped into a single directory. Almost all the filenames have a space in them. I am trying to use CFFILE action=move to clean things up but apparently CFFILE does not like the spaces in the file names.