Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要从外部服务器下载文件并将其保存到我的服务器,例如:
看看WebClient课堂。
WebClient
public void Download(string url, string filenameToSaveAs) { WebClient wclient = new WebClient(); wclient.DownloadFileAsync(new Uri(url), filenameToSaveAs); }