HI ,
I need to Display all the Sub folders in a Shared folder which is on other
system in local network using ASP server side code.
I am using this code
'***************************************************
dim fso
dim ldir
dim lfrds
dim strList
set fso = Server.CreateObject("Scripting.FileSystemObject")
set ldir= fso.GetFolder("\\gis-srv-odtx\!Corrections")
set lfrds =ldir.subfolders
For Each folder in lfrds
Response.write folder.name
Next
Set files = Nothing
Set subFolders = Nothing
Set ldir= Nothing
Set fso = Nothing
'******************************************************
The above code works if it is a folder on local system i.e
C:\inetpub\wwroot\XYZ..
but not with shared folder .
I also tried mapping the Shared folder ..but still It doesn't work
Thanks
VENU