I'm modifying an application written by someone else. It uses the ColdFusion
<cffile action="uploadall"
How can I check and limit the size on an individual file basis when uploading multiple files?
I'm modifying an application written by someone else. It uses the ColdFusion
<cffile action="uploadall"
How can I check and limit the size on an individual file basis when uploading multiple files?
You will get the uploaded files' details in an Array. You can loop over them and do the file size validation logic independent from
cffiletag.