Question
Loop over cfftp listdir output??
I am trying to loop over the info in our FTP directory using:
<cfftp action="listdir" username="commmast" password="H57Jvc21" server="ftp2.idaho.gov" directory="commuser" name="DirList">
<cfdump var="#DirList#">
If I do a dump, I see all the files, and other info I want, but if I do a:
<cfloop query="#DirList#">
#name#
</cfloop>
I'm getting:
Complex object types cannot be converted to simple values.
Why would this be?
