0

我需要从外部服务器下载文件并将其保存到我的服务器,例如:

4

1 回答 1

1

看看WebClient课堂。

public void Download(string url, string filenameToSaveAs)
{
   WebClient wclient = new WebClient();
   wclient.DownloadFileAsync(new Uri(url), filenameToSaveAs);
}
于 2013-07-20T04:13:25.840 回答