有一个服务器iis站点asp.net,它在域中扭曲。共享的文件不在域中,通过登录和密码授权。
任务: 这个共享应该用于保存那里的用户文件,将它们保存在那里并通过asp.net再次查看。
已经尝试过但没有工作:
NetworkCredential theNetworkCredential = new NetworkCredential(@"username", "password");
CredentialCache theNetCache = new CredentialCache();
theNetCache.Add(new Uri(@"\\computer"), "Basic", theNetworkCredential);
string[] theFolders = Directory.GetDirectories(@"\\computer\share");
在测试机器上工作时。但显然使用了一些在工作服务器上被阻止的特殊端口。
How to provide user name and password when connecting to a network share - 连接网络驱动器,工作并不完全正确。