1

我得到了这个例外

该进程无法访问文件“myfile.zip”,因为它正被另一个进程使用。

当我尝试删除文件时。我了解该错误,但我不确定其他进程可能正在使用该文件。

我正在通过WebClient异步下载文件,但我在尝试删除它之前取消了下载,这意味着该进程应该放弃它,不是吗?

以下是相关方法。这是一个简单的文件下载器:

private void textBox1_KeyUp(object sender, KeyEventArgs e)
{
    string downloadFile = textBox1.Text.Trim();
    if (e.Key == Key.Return && downloadFile != "")
    {
        var dlg = new SaveFileDialog();
        dlg.FileName = Path.GetFileName(downloadFile);
        dlg.DefaultExt = Path.GetExtension(downloadFile);
        var result = dlg.ShowDialog();
        if(result.Value)
        {
            textBox1.Text = "";
            textBox1.Focus();
            _saveFile = dlg.FileName;
            progressBar1.Dispatcher.Invoke(DispatcherPriority.Normal, new Action(() => progressBar1.Foreground = new SolidColorBrush(Color.FromRgb(0, 255, 0))));
            _webClient.DownloadFileAsync(new Uri(downloadFile), _saveFile);
        }
    }
}


private void Window_Closing(object sender, System.ComponentModel.CancelEventArgs e)
{
    if (_webClient.IsBusy && _saveFile != null)
    {
        var result = MessageBox.Show("Download in progress. Are you sure you want to exit?", "Exit?", MessageBoxButton.YesNo, MessageBoxImage.Warning);
        if (result == MessageBoxResult.Yes)
        {
            _webClient.CancelAsync();
            File.Delete(_saveFile);
        }
        else
        {
            e.Cancel = true;
        }
    }
}
4

1 回答 1

1

下载真正取消时需要等待。当调用 _webClient.CancelAsync(); next 运算符在 webClient 取消之前立即执行。

可能您需要在 CancelAsync(...) 的回调中删除文件

于 2012-05-12T15:25:22.807 回答