在另一台服务器上使用文件存储共享

时间:2015-04-10 01:08:01

标签: c# asp.net

有一个服务器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 - 连接网络驱动器,工作并不完全正确。

0 个答案:

没有答案