Leo B
Leo B

Reputation:

How can I access a mapped network drive with System.IO.DirectoryInfo?

I need to create a directory on a mapped network drive. I am using a code:

DirectoryInfo targetDirectory = new DirectoryInfo(path);
if (targetDirectory != null)
{
    targetDirectory.Create();
}

If I specify the path like "\\\\ServerName\\Directory", it all goes OK. If I map the "\\ServerName\Directory" as, say drive Z:, and specify the path like "Z:\\", it fails.

After the creating the targetDirectory object, VS shows (in the debug mode) that targetDirectory.Exists = false, and trying to do targetDirectory.Create() throws an exception:

System.IO.DirectoryNotFoundException: "Could not find a part of the path 'Z:\'."

However, the same code works well with local directories, e.g. C:.

The application is a Windows service (WinXP Pro, SP2, .NET 2) running under the same account as the user that mapped the drive. Qwinsta replies that the user's session is the session 0, so it is the same session as the service's.

Upvotes: 40

Views: 62561

Answers (7)

Rob
Rob

Reputation: 45771

Are you running on Vista/Server 2k8? Both of those isolate services into Session 0 and the first interactive session is Session 1. There's more info here, on session isolation. Thus, even if it's the same user being used for both the service and the interactive logon, it'll be different sessions.

Upvotes: 2

Orekhov Alexander
Orekhov Alexander

Reputation: 1

I had the same problem on Win Server 2012. The disabling UAC solved it.

Upvotes: 0

IAmGroot
IAmGroot

Reputation: 13855

Based on the fact, mapped drive letters don't work, the simple solution is to type the full network path.

Aka,

my R:/ drive was mapped to \\myserver\files\myapp\

So instead of using

"R:/" + "photos"

use

"\\myserver\files\myapp\" + "photos"

Upvotes: 18

Erikk Ross
Erikk Ross

Reputation: 2183

The account your application is running under probably does not have access to the mapped drive. If this is a web application, that would definitely be the problem...By default a web app runs under the NETWORK SERVICE account which would not have any mapped drives setup. Try using impersonation to see if it fixes the problem. Although you probably need to figure out a better solution then just using impersonation. If it were me, I'd stick to using the UNC path.

Upvotes: 5

Kev
Kev

Reputation: 119816

Mapped network drives are user specific, so if the app is running under a different identity than the user that created the mapped drive letter (z:) it won't work.

Upvotes: 61

EBGreen
EBGreen

Reputation: 37740

Are you mapping with the exact same credentials as the program is running with?

Upvotes: 3

fhe
fhe

Reputation: 6187

You can try to use WNetConnection to resolve the mapped drive to a network path.

Upvotes: 1

Related Questions