Tagged Questions
5
votes
3answers
3k views
C#: How to logon to a share when using DirectoryInfo
If I want to instantiate a DirectoryInfo object with an UNC path
DirectoryInfo myDI = new DirectoryInfo (@"\\server\share");
how can I pass a username / password that is required to access that ...