in ASP-vbscript, I can use the GetFolder method of FileSystemObject to get the contents inside a folder if i pass the location of the folder
Set fso = CreateObject("Scripting.FileSystemObject")
Set folder = fso.GetFolder(Server.MapPath("myfolder"))
Can i use the same method with a url instead of foldername
like
Set folder = fso.GetFolder("http://www.mysite.com/myfolder/")
When trying this i am getting error
Microsoft VBScript runtime error '800a004c'
Path not found
I manage the "mysite.com" site.So i can make any folder permissions if needed.
Any thoughts ?