trying to access files located on another server within the network. the
folder is shared out and we created a virtual directory as well.
The error is Microsoft VBScript runtime error '800a004c' Path not found
Here is my code
<%
dim fs,fo,x
set fs=Server.Creat eObject("Script ing.FileSystemO bject")
set fo=fs.GetFolder ("\\hostname\pr ocedures")
for each x in fo.files
'Print the name of all files in the test folder
Response.write( x.Name & "<br />")
next
set fo=nothing
set fs=nothing
%>
....tried some MS solutions
and
The previous was from a post on this page from May 2007.
Thank You in advance for any help you might provide
folder is shared out and we created a virtual directory as well.
The error is Microsoft VBScript runtime error '800a004c' Path not found
Here is my code
<%
dim fs,fo,x
set fs=Server.Creat eObject("Script ing.FileSystemO bject")
set fo=fs.GetFolder ("\\hostname\pr ocedures")
for each x in fo.files
'Print the name of all files in the test folder
Response.write( x.Name & "<br />")
next
set fo=nothing
set fs=nothing
%>
....tried some MS solutions
and
The previous was from a post on this page from May 2007.
Thank You in advance for any help you might provide
Comment