我正在使用以下代码从TFS服务器下载多个附件:
foreach (Attachment a in wi.Attachments)
{
WebClient wc = new WebClient();
wc.Credentials = (ICredentials)netCred;
wc.DownloadFileCompleted += new AsyncCompletedEventHandler(wc_DownloadFileCompleted);
wc.DownloadFileAsync(a.Uri, "C:\\" + a.Name);
}
我想使用DownloadFileAsync下载多个文件,但我希望逐个下载它们。
有人可能会问:“你为什么不使用同步的DownloadFile方法?”因为:
这是我想到的解决方案:
foreach (Attachment a in wi.Attachments)
{
WebClient wc = new WebClient();
wc.Credentials = (ICredentials)netCred;
wc.DownloadFileCompleted += new AsyncCompletedEventHandler(wc_DownloadFileCompleted);
wc.DownloadFileAsync(a.Uri, "C:\\" + a.Name);
while (wc.IsBusy)
{
System.Threading.Thread.Sleep(1000);
}
}
但是,这种方法存在一些问题:
使用WebClient.DownloadFileAsync,是否有更好的方法一次下载一个文件?
谢谢!
答案 0 :(得分:8)
要简化任务,您可以创建单独的附件列表:
list = new List<Attachment>(wi.Attachments);
其中列表是类型为列表&lt;附件&gt; 的私有字段。 在此之后,您应该配置WebClient并开始下载第一个文件:
if (list.Count > 0) {
WebClient wc = new WebClient();
wc.Credentials = (ICredentials)netCred;
wc.DownloadFileCompleted += new AsyncCompletedEventHandler(wc_DownloadFileCompleted);
wc.DownloadFileAsync(list[0].Uri, @"C:\" + list[0].Name);
}
您的DownloadFileComplete处理程序应检查是否已下载所有文件并再次调用DownloadFileAsync:
void wc_DownloadFileCompleted(object sender, AsyncCompletedEventArgs e) {
// ... do something useful
list.RemoveAt(0);
if (list.Count > 0)
wc.DownloadFileAsync(list[0].Uri, @"C:\" + list[0].Name);
}
此代码不是优化解决方案。这只是一个想法。
答案 1 :(得分:2)
冒着听起来像白痴的风险,这对我有用:
Console.WriteLine("Downloading...");
client.DownloadFileAsync(new Uri(file.Value), filePath);
while (client.IsBusy)
{
// run some stuff like checking download progress etc
}
Console.WriteLine("Done. {0}", filePath);
其中client
是WebClient
对象的实例。
答案 2 :(得分:0)
我认为应该使用Queue