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