使用webClient C#将文件名传递给异步文件下载中的DownloadFileCompleted

时间:2014-04-04 14:29:56

标签: c# queue webclient

我的程序正在使用队列使用webClient在异步方法中逐个下载文件列表。 它看起来像这样:

    public void DownloadFile()
    {
        if (_downloadUrls.Any())
        {
            var urlAddress = _downloadUrls.Dequeue();
            //Irrelevant code that gets correct URL, and location from queue _downloadUrls

            try
            {
                // Start downloading the file
                webClient1.DownloadFileAsync(URL, location);
            }
            catch (Exception ex)
            {
                MessageBox.Show(ex.Message);
            }
        }
        else
        {
            MessageBox.Show("complete!");
        }
    }

这是我的DownloadFileCompleted代码:

private void webClient1_DownloadFileCompleted(object sender, AsyncCompletedEventArgs e)
    {
        if (e.Cancelled == true)
        {
            // MessageBox.Show("Download has been canceled.");
        }
        else
        {
            DownloadFile();
        }
    }

问题是如何将有关文件名的信息传递给DownloadFileCompleted? 我想更改下载文件的上次访问日期,以便它们与服务器上的相同,我只能在webClient1_DownloadFileCompleted中执行此操作,但我不知道哪个文件触发了事件DownloadFileCompleted。如何将此信息传递给DownloadFileCompleted(最好是参数中的字符串)。

1 个答案:

答案 0 :(得分:4)

使用重载方法WebClient.DownloadFileAsync(Uri address, string fileName, object userToken),您可以将文件名作为userToken传递,然后在DownloadFileCompleted处理程序中访问它。

userToken: A user-defined object that is passed to the method invoked when the asynchronous operation completes.

http://msdn.microsoft.com/en-us/library/ms144197(v=vs.110).aspx