我正在尝试将文件写入共享文件夹中的特定位置。 只有少数人可以访问此共享文件夹。但在代码中,我想要获取Windows凭据或提供某些用户名和密码。 但是,当我尝试它总是显示我拒绝访问。 我想传递某些凭据或Windows网络登录凭据。我怎样才能做到这一点?
string destFilename = @"\\test.net\excel\docs\test.xls";
System.Net.WebClient client = new System.Net.WebClient();
WebDownload w = new WebDownload(3600000);
UTF8Encoding objUTF8 = new UTF8Encoding();
byte[] data = w.DownloadData();
WebRequest request = WebRequest.Create(destFilename);
File.WriteAllBytes(destFilename, data); //ACCESS DENIED
修改
这是一个控制台应用程序
答案 0 :(得分:0)
您可以设置IIS应用程序池标识,以便以具有访问权限的用户身份运行应用程序。您可以在此处找到更多信息:
http://www.iis.net/learn/manage/configuring-security/application-pool-identities