使用网络电机输出访问拒绝



当我在项目中使用Webclients时,当我运行时,它说"访问被拒绝",而其他内容也不会从我的计算机中删除这是代码

using (var client = new WebClient())
{
client.DownloadFile("example.com/a.txt", "a.txt");
}

编辑:我不认为代码,我认为当我在此处宣布网络电脑时会得到标志

var client = new WebClient()

本身不起作用

enter code here
enter code here

确保运行应用程序的用户帐户确实有权将文件写入此示例中的文件夹C: drive。

using (var client = new WebClient())
{
    client.Credentials = new NetworkCredential("UserName", "Password");
    client.DownloadFile(new Uri("http://www.example.com/a.txt"), @"c:a.txt"); 
}

您的问题看起来与堆栈溢出上的问题相同。您能尝试在以下问题上回答解决方案吗?

链接:通过行读取远程文本文件,并与输入框条目进行比较

相关内容

  • 没有找到相关文章

最新更新