jimmyshoes
Programmer
Code:
<cffile action="upload" filefield="form.FileToUpload"
destination="d:\home\your_domain.com\[URL unfurl="true"]wwwroot\uploads\"[/URL] nameConflict="makeUnique">
<cfset Uploaded_File_Name = CFFile.ClientFile>
<CFOUTPUT>File: [#Uploaded_File_Name#]</CFOUTPUT>
Is it possible to replicate this code using cffile action="uploadall" to cfoutput all the uploaded file names. I want to do this on the server side
Thanks