Question
Does file upload have to go through the tmp directory first?
I am dealing with some large file uploads in the 1gb to 2gb
range. These files get uploaded first into CF's tmp directory, then
CFFILE essentially copies the file to another location. With large
files, this secondary copy by CFFILE actually consumes a lot of
time and I/O resources. Is there a way to simply upload the file
directly into the folder I want and bypass the whole temp
operation? FTP is not an option for me. Thanks.