I'm using <cfdirectory> and I'm trying to access a directory on another server. If I'm on server 1 I can get to server 2. I can't seem to get from server 1 to server 2 using coldfusion though.
I've tried the mapped path and I've tried the hard coded path, neither work.
<CFSET LibraryDirectory = "p:\folder\folder2">
or
<CFSET LibraryDirectory = "\\server2\folder\folder2">
<CFDIRECTORY
action="LIST"
directory="#LibraryDirectory#"
name="GetFiles"
filter="Media*.pdf"
sort=DateLastModified>
Can coldfusion access files on another server?
I've tried the mapped path and I've tried the hard coded path, neither work.
<CFSET LibraryDirectory = "p:\folder\folder2">
or
<CFSET LibraryDirectory = "\\server2\folder\folder2">
<CFDIRECTORY
action="LIST"
directory="#LibraryDirectory#"
name="GetFiles"
filter="Media*.pdf"
sort=DateLastModified>
Can coldfusion access files on another server?