WPF下载文件并同时保存

时间:2013-03-04 16:23:53

标签: c# .net wpf

我用这种方法下载文件:

WebClient webClient = new WebClient();
webClient.DownloadProgressChanged += new DownloadProgressChangedEventHandler(webClient_DownloadProgressChanged);
webClient.DownloadDataCompleted += new DownloadDataCompletedEventHandler(client_DownloadDataCompleted);
webClient.DownloadDataAsync(new Uri(this.Url));

这就是我将它保存到磁盘的方式:

void client_DownloadDataCompleted(object sender, DownloadDataCompletedEventArgs e)
    {
        try
        {
            if (e.Result != null)
            {
                string VideoFile = Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData) + "\\Playtube\\VideoCache\\" + this.id + ".wmv";
                File.WriteAllBytes(VideoFile, e.Result);

                isDownloading = false;
                callbackFinish();
            }
        }
        catch (Exception ex)
        {
            //MessageBox.Show(ex.Message);
        }
    }

我想知道是否可以下载文件并同时将其保存到磁盘,而不是等到文件完成下载才能保存。

1 个答案:

答案 0 :(得分:3)

您可以使用DownloadFileAsync将其直接下载到文件中。