类型为#System; Net.WebException'的未处理异常在更新时发生在System.dll中

时间:2016-06-17 13:17:29

标签: c# webclient downloadfile

我正在尝试让我的程序在按下按钮时下载更新。

我的代码如下:

private void button3_Click(object sender, EventArgs e)
{
    WebClient Webc = new WebClient();
    Webc.DownloadFile("https://www.dropbox.com/s/update.exe?dl=1", "C:/users" + Environment.UserName + "/documents/update.exe");
}

我真的不知道我现在应该做什么,我在互联网上搜索,无法找到解决问题的方法。

我也在使用System.Net,所以它不应该是一个问题。

感谢您的帮助! :)

1 个答案:

答案 0 :(得分:0)

正如斯图尔德在评论中已经提到的那样,试试这个:

WebClient Webc = new WebClient();
Webc.DownloadFile(@"https://www.dropbox.com/s/update.exe?dl=1", @"C:\users\" + Environment.UserName + @"\documents\update.exe");