我使用 C# 创建网站,并且我在另一台网络计算机中有共享文件夹,现在我需要使用(域或静态 IP - 用户名 - 密码)从我的网页浏览共享文件夹内的所有文件和文件夹。我需要用户可以访问共享文件夹文件并仅下载它。
此代码可以从网络复制文件,但不能通过互联网工作:
NetworkCredential theNetworkCredential = new NetworkCredential(@"Domain\Username", "Password");
CredentialCache theNetCache = new CredentialCache();
theNetCache.Add(new Uri(@"\\Domain"), "SHARED", theNetworkCredential);
string[] theFolders = Directory.GetDirectories(@"\\Servername\SHARED\");
string sourceDirectory = theFolders[1];
string targetDirectory = @"E:\Shared";
DirectoryInfo diSource = new DirectoryInfo(sourceDirectory);
DirectoryInfo diTarget = new DirectoryInfo(targetDirectory);
CopyAll(diSource, diTarget);