下载网路图片并保存在硬盘

string url  URL地址

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

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

原文地址:https://www.cnblogs.com/ainidewen/p/4556541.html