cfftp - mapped drive
I am trying to use a mapped drive with cfftp. I've changed Coldfusion to run as the user with the mapped drive access in services. This works:
localfile ="c:\foo\bar.txt" This doesn't. I get an error (The system cannot find the path specified).
localfile ="m:\foo\bar.txt"To see if it was a cfftp issue I tried:
<cfset dir = DirectoryList("c:\") />
<cfdump var="#dir#">
<cfset dir = DirectoryList("m:\") />
<cfdump var="#dir#">M returned an empty array.
Any suggestions? Thanks!
