Hello all I have an asp script that will check if a folder exists. It works great untile I try to check for a folder on my mapped network drive i.e. \\warservertom\somefolder Here is the code I have: dim fs,drivename drivename = request.Form("drive") If request.Form("submit") = "" Then sTBL = "<form action= '' method = 'post'><table><tr><td>Drive name: <input type='text' name='drive' /></td></tr>" sTBL = sTBL &"<tr><td><input type = 'submit' name = 'submit' ></td></tr></table>" response.Write(sTBL) else Set objFSO = CreateObject("Scripting.FileSystemObject") If objFSO.FolderExists(drivename) Then response.Write("exists") Else response.Write("does not exists") End If end if Code (markup): I need to be able to serech for folders on a networkd and copy them and move them to another folder.
Try actually mapping the folder so you can hit "W:\Blah\" or if this iswhat your doing, try in reverse, by trying to hit "\\blah\blah". Do you hvae the appropriate settings set for permissions on that folder to read? Firewall or Proxy?