T
Todd
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.CreateObject("Scripting.FileSystemObject")
set fo=fs.GetFolder("\\hostname\procedures")
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
http://support.microsoft.com/default.aspx?scid=kb;en-us;Q197964
and
http://databases.aspfaq.com/databas...-database-or-text-file-on-another-server.html
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.CreateObject("Scripting.FileSystemObject")
set fo=fs.GetFolder("\\hostname\procedures")
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
http://support.microsoft.com/default.aspx?scid=kb;en-us;Q197964
and
http://databases.aspfaq.com/databas...-database-or-text-file-on-another-server.html
The previous was from a post on this page from May 2007.
Thank You in advance for any help you might provide