Output a value from the array created by cffile uploadall
Hello. I am playing around with the cffile tag, more specifically, the cffile action="uploadall". I am having trouble getting specific values from the array that is created by the result part of the tag though. So I have the following...
<cffile action="uploadall"
destination="C:\websites\mysite\pictures\"
nameconflict="makeunique"
result="show_result">
It puts the files that were uploaded by cffileupload in the correct directory. However, I then output the result like this: <cfdump var="#show_result#"> and it gives me an array of values that I would like to use but I can't seem to output them correctly. I attached a pic so you can see part of the dump. I try to output the FILESIZE part of the array like so #show_result.filesize[1]# but I get an error.
Can someone show me the correct syntax I should use to output the FILESIZE,CLIENTFILENAME, etc?

