C# 下载

string url  URL地址

string path 保存到硬盘的具体路径

WebClient webClient = new WebClient();
webClient .DownloadFile(new Uri(url), path);

原文地址:https://www.cnblogs.com/Lance-Lan/p/4558806.html