Recently i move my classic asp application from Windows XP + IIS5 to Windows Server 2008 + IIS7. It is almost everything working fine except one thing... the FileSystemObject doesn't reach files or folders on shared folder in remote PC. The following code always results with "File Doesn't Exists" and believe me the file exist!!
set fg=Server.CreateObject("Scripting.FileSystemObject")
if fg.FileExists("\\netapp1\CM\CompilationResults\6.6 Release\TCL\L6.50.001\alias.tcl") then
response.write("File Exists")
else
response.write("File Doesn't Exists")
end if
When trying the FileExists on local folder it works OK. This is working fine:
if fg.FileExists(Server.MapPath ("Logs\Add pc\Status log\status_file.txt")) then ......
Does anyone have an idea how to solve this problem?