Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question
Does the user you're running on have access to the file & its network share on the remote PC? – SLaks Aug 15 '12 at 15:52
The Remote PC has read permissions to... "Authenticated Users" "Domain Users" and some private users. – user1600952 Aug 16 '12 at 7:13

1 Answer

Could be a issue related to permissions you have on inetpub folder,

check this for hints

http://forums.iis.net/t/1149760.aspx

http://forums.iis.net/t/1154590.aspx

IIS7 Permission Denied - ASP File Write

http://forums.iis.net/t/1182149.aspx

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.