我有运行Tshark
进程的应用程序。每个进程在磁盘上创建文件(Wireshark 文件)。在用户决定将特定文件 kill 命令集保存到应用程序后,进程终止。在Procees.Exited
引发该事件并且刚刚创建的文件复制到磁盘上的另一个位置之后。此时我想删除旧文件,但在大多数情况下得到IOException
该文件,因为它正在被另一个进程使用。
private void CopyFile(MyClass tsharkFile)
{
try
{
string oldFile = ...
string newFile = ...
File.Copy(oldFile, newFile);
File.Delete(oldFile);
}
catch (IOException)
{
status = "Failed to delete file";
}
}
上述函数在Procees.Exited
事件引发且进程不存在后调用。这是杀死进程功能:
private void KillTshatkProcess(int processId)
{
lock (_list) //
{
foreach (tsharkFile tsh in _list)
{
if (tsh.processId == processId)
{
Process process = Process.GetProcessById(tsh.processId);
if (process != null)
{
process.Kill();
process.WaitForExit();
}
}
}
}
}
有某种方法可以等待并确保我Process
已经死了然后删除文件?