循环下载文件列表

时间:2019-02-02 19:10:40

标签: c# download downloadfileasync

我有一个文件列表,我想按顺序下载 该程序的问题在于它在程序运行后停止运行,并且先前的任务尚未结束。 下载后我需要重命名并转移,然后下一次下载应该开始

 foreach (var item in generatedLinks)
            {
                fileDownloader.DownloadFileAsync(new Uri(item), Environment.CurrentDirectory + @"\data\" + System.IO.Path.GetFileName(item));
            }

void DownloadFileCompleted(object sender, DownloadFileCompletedArgs eventArgs)
        {
            Rename();
            Move();
        }

0 个答案:

没有答案