我在使用 C# WebClient DownloadFileAsync 时遇到了一些问题,希望您能帮助我。
这是我的场景:
我正在使用 WebClient DownloadFileAsync 同时下载许多文件(http://example.com/abc/1.jpg、http://example.com/abc/efg/2.jpg等)。
我当前的示例代码是:
while (theres still files in http://example.com/abc/) {
// filename will be something like /abc/1.jpg, /abc/efg/2.jpg
if (!file.exists(directory.getcurrentdirectory()+filename.Replace('/', '\\'))) {
WebClient webClient = new WebClient();
webClient.DownloadProgressChanged += new DownloadProgressChangedEventHandler(downloadProgressChanged);
webClient.DownloadFileCompleted += new AsyncCompletedEventHandler(downloadCompleted);
webClient.DownloadFileAsync(new Uri("http://example.com"+filename), Directory.GetCurrentDirectory()+filename.Replace('/', '\\'));
}
如何使正在下载的所有文件都显示在一个进度条中?
例如。1.jpg是50kb,2.jpg是50kb,1.jpg下载完成后进度条会显示50%,2.jpg会从51%到100%的进度条。
另外,如果文件名是/abc/1.jpg,如果我当前目录没有名为abc 的文件夹,下载将无法进行。如何让它根据文件名自动创建文件夹?(例如 /random123/3.jpg、/anotherrandom/4.jpg 等)