I need to create a directory on a mapped network drive. I am using a code:
DirectoryInfo targetDirectory = new DirectoryInfo(path);
if (targetDirectory != nu
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.
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"
You can try to use WNetConnection to resolve the mapped drive to a network path.
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.
I had the same problem on Win Server 2012. The disabling UAC solved it.
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.