如何检查进程是否仍在运行
本文关键字:是否 运行 进程 何检查 检查 | 更新日期: 2023-09-27 18:07:01
构造函数中:
if (Process.GetProcessesByName(@"C:'Program Files (x86)'Elgato'GameCapture'GameCapture.exe").Length == 0)
{
Process.Start(@"C:'Program Files (x86)'Elgato'GameCapture'GameCapture.exe");
}
问题是,即使进程正在运行,它也试图重新启动它。
这个过程的名字就是GameCapture。