gpt4 book ai didi

C#进程终止

转载 作者:IT王子 更新时间:2023-10-29 04:45:28 25 4
gpt4 key购买 nike

我需要用 c# 编写一个程序,它会启动、终止一个它应该终止并自行结束的进程\exe。

我需要终止的进程是另一个 C# 应用程序,因此它是一个本地用户进程,我知道 exe 的路径。

最佳答案

查看 Process.GetProcessesByNameProcess.Kill

// Get all instances of Notepad running on the local
// computer.
Process [] localByName = Process.GetProcessesByName("notepad");
foreach(Process p in localByName)
{
p.Kill();
}

关于C#进程终止,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2237628/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com