Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do I map a network drive that requires a username and password in .NET?

I need to map a network drive from within a .NET application. I'm going to need to use an AD Username and Password to authenticate. Usually I just use a batch file with the net use command. How do I do this from within C# or VB.NET code?

like image 234
Ben McCormack Avatar asked Jul 07 '10 21:07

Ben McCormack


1 Answers

Have you looked at this?

http://www.codeguru.com/csharp/csharp/cs_network/windowsservices/article.php/c12357

Also, you could just use net.exe via Process.Start() and pass it the parameters you've always used in the code below:

System.Diagnostics.Process.Start("net.exe", "use K: \\\\Server\\URI\\path\\here");

This can also be used without a drive letter and then accessed through the UNC path.

 System.Diagnostics.Process.Start("net.exe", @"use @"\\Server\URI\path\here");
 System.IO.File.Copy(@"\\Server\URI\path\here\somefile.abc", destFile, true);
like image 97
Tim Coker Avatar answered Sep 22 '22 18:09

Tim Coker