类型为';System.Net.WebException';发生在System.dll中

本文关键字:System dll Net 类型 WebException | 更新日期: 2023-09-27 17:59:25

我一直收到这个错误。我不知道该怎么修。

private void button1_Click(object sender, EventArgs e)
{
  WebClient Client = new WebClient();
Client.DownloadFile("https://cdn.meme.am/instances/60569499.jpg", @"C:'Users'fatih'Desktop");
}

类型为';System.Net.WebException';发生在System.dll中

check WebException有一个InnerException,它会说:

拒绝访问路径C:''Users''fatih''DesDesktop。

写入文件,而不是文件夹

只需添加文件名C:''Users''fatih''Desktop''file[.extention]

*确保您有权访问这些位置