我正在尝试删除通过后台工作程序创建的文件。我正在处理一个文件拆分程序,它会将一个大文本文件分成多个文本文件。我使用取消工作程序来阻止后台工作程序。
当该文件当前被另一个进程(拆分进程)锁定时,该进程会遇到错误,因此无法将其删除。
当调用cancel async时,有没有办法解除对它的锁定?
拆分文件代码
if (includeHeaders == "True")
{
using (var reader = new StreamReader(File.OpenRead(filepath)))
{
lines.Clear();
_header = reader.ReadLine();
lines.Add(_header);
for (int i = 0; i < _lineCount; i++)
{
if (bg.CancellationPending)
{
e.Cancel = true;
break;
}
int percentage = (i + 1) * 100 / _lineCount;
bg.ReportProgress(percentage);
lines.Add(reader.ReadLine());
if (i % numberOfRows == 0)
{
_counter++;
if (i == 0)
{
//skip first iteration
_counter = 0;
continue;
}
_output = _tempath + "\\" + "split\\" + _fileNoExt + "_split-" + _counter + _fileExt;
File.WriteAllLines(_output, lines.ConvertAll(Convert.ToString));
lines.Clear();
lines.Add(_header);
Debug.WriteLine(_output);
}
}
}
}
停止拆分的代码
private void StopSplit()
{
bg.CancelAsync();
File.Delete(_output);
((MainWindow)Application.Current.MainWindow).DisplayAlert(
"Split has been cancelled");
ProgressBar.Value = 0;
}
我知道代码不会删除所有已创建的文件,我只想在删除其余部分之前先让删除工作。
答案 0 :(得分:2)
您假设BackgroundWorker.CancelAsync将立即取消您的操作,从而使您可以访问您的后台代码正在执行的资源。相反,它所做的就是设置DoWork事件处理程序当前正在检查的标志(bg.CancellationPending)。
将CancelAsync之后的所有代码移动到另一个处理RunWorkerCompleted事件的事件处理程序。
bg_RunWorkerCompleted(object sender, RunWorkerCompletedEventArgs e){
if(e.Cancelled) {
File.Delete(_output);
((MainWindow)Application.Current.MainWindow).DisplayAlert("Split has been cancelled");
ProgressBar.Value = 0;
}
// TODO: handle your other, non-cancel scenarios
}