We try to access a directory which is within a network directory but get wrong results (C#/Windows):

var exists = Directory.Exists("Z:\\Sessions\\Data1");

"Z" is the network directory, "Sessions" is a directory where a recording software constantly creates directories (e.g. "Data1") and puts some data in it. It seems that Windows caches the wrong state about Data1: The method returns false. But when I access the directory via Explorer it's here. When I run the method (Directory.Exists) after accessing the directory with Explorer, it returns true. Of course I can guarantee that the directory actually existst at the first attempt.

What is the reason for this behaviour? What can I do about it?

Edit: It seems that windows could not connect the network drive to the remote computer. When I try to navigate into the directory with Explorer it automatically tries to connect the drive.

So the question changes: Is there a way to force windows to try a reconnect via .NET?

Solution: Reconnecting a disconnected network drive

link|improve this question

67% accept rate
If you access the directory with the DIR command from the command prompt, do you get the correct information? That is: dir Z:\Sessions\Data1. – Jim Mischel Dec 25 '11 at 14:24
No, accessing the directory via command prompt doesn't refresh the network drive connection. Please see my edit... – nepa Dec 26 '11 at 10:20
feedback

1 Answer

What is the reason for this behaviour?

Quote from the documentation:

If you do not have at a minimum read-only permission to the directory, the Exists method will return false.


What can I do about it?

Ensure that you are running your .NET application under an account that has at least read-only permission to access this folder. Notice that if you are writing this in an ASP.NET application this probably won't be the case so depending on which account you configured your web server to execute your application under, take the necessary steps to grant permissions to this account.

link|improve this answer
as the OP mentioned, "When I run the method (Directory.Exists) after accessing the directory with Explorer, it returns true. " - which means that most likely it's a problem of caching rather than of permissions – Eugene Mayevski 'EldoS Corp Dec 25 '11 at 13:28
1  
@EugeneMayevski'EldoSCorp, when you use the Explorer you are running it under your account. When you are running an ASP.NET application it could run under an entirely different account. So I guess that the test that the OP performed to verify that the directory exists wasn't performed at equal conditions: at the first case he used his own account whereas in the second some other account is used (we could only be guessing which one at this stage as the OP provided exactly 0 context about his application). – Darin Dimitrov Dec 25 '11 at 13:29
The question changed due to some discoveries I made, please see my edits. – nepa Dec 26 '11 at 10:22
feedback

Your Answer

 
or
required, but never shown

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