C#-WebClient下载文件

云逸星空科技工作室 / 2023-08-30 / 原文

using (var wc = new WebClient())
{
    wc.DownloadFile(downloadUri, downloadedZipFile);
}