C# 暂停/停止 System.Diagnostics.Process

发布于 2024-09-28 11:04:32 字数 263 浏览 0 评论 0原文

我有一个运行 exe 的进程:

Process pr = new Process();                                                 
pr.StartInfo.FileName = @"wput.exe"; 

我希望能够暂停和停止此进程。我可以发起什么活动来实现这一目标吗?我的应用程序中有多个进程在工作,每个进程都有自己的线程。我查看了暂停线程,但这不会给我想要的结果。

I have a Process that runs an exe:

Process pr = new Process();                                                 
pr.StartInfo.FileName = @"wput.exe"; 

etc

I want to be able to pause and stop this Process. Are there any events I can raise to achieve this. I have multiple Processes working in my app, each with it's own Thread. I looked at pausing Threads but that would not give me the result I want.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

染墨丶若流云 2024-10-05 11:04:32

您可以像任务管理器一样读取系统中的进程列表,并尝试终止名为“wput.exe”的进程。

试试这个

using System.Diagnostics;


private void KillAllProcesses( string name )
{
    Process[] processes = Process.GetProcessesByName( name );
    foreach( Process p in processes )
        p.Kill();
}

You could read the list of processes in the system, as task manager does and try to kill the process with the name "wput.exe".

Try this

using System.Diagnostics;


private void KillAllProcesses( string name )
{
    Process[] processes = Process.GetProcessesByName( name );
    foreach( Process p in processes )
        p.Kill();
}
心奴独伤 2024-10-05 11:04:32

要杀死刚刚启动的进程,请使用:

pr.Kill();

pr.WaitForExit();
// now you sure that it has been terminated

To kill just started process use:

pr.Kill();

pr.WaitForExit();
// now you sure that it has been terminated
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文