0
我需要從外部服務器下載並保存文件到我的服務器,例如:保存文件到服務器
- 用戶將進入下面的鏈接http://server8.mp3quran.net/ahmad_huth/019.mp3然後點擊上傳。
- 我需要下載並保存指定的文件到我的服務器。
我需要從外部服務器下載並保存文件到我的服務器,例如:保存文件到服務器
查看WebClient
類。
public void Download(string url, string filenameToSaveAs)
{
WebClient wclient = new WebClient();
wclient.DownloadFileAsync(new Uri(url), filenameToSaveAs);
}
我沒有關於這個課程能幫助我的背景嗎? –