使用Python结束外部程序

发布于 2024-11-07 20:12:31 字数 245 浏览 2 评论 0原文

我正在编写一个需要能够终止某些进程的程序。我目前使用的两条线有效;但是,第二行 os.system(task) 在结束进程时会瞬间启动命令提示符。是否有任何不启动命令提示符的等效行?

片段:

task = 'taskkill /im ' + taskname + ' /f'
os.system(task)

如果您猜不到的话,这是在 Windows 7 中。

I'm writing a program that needs to be able to kill certain processes. The two lines I'm currently using work; however, the second line os.system(task) launches command prompt for a split second whilst it's ending a process. Are there any equivalent lines which do not launch command prompt?

Snippet :

task = 'taskkill /im ' + taskname + ' /f'
os.system(task)

This is in Windows 7 if you couldn't have guessed.

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

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

发布评论

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

评论(1

风透绣罗衣 2024-11-14 20:12:31

尝试使用 subprocess.check_call 而不是 os.system。这不会在控制台窗口中启动该进程。

import subprocess
taskname = '...'
task = 'taskkill /im ' + taskname + ' /f'
subprocess.check_call(task, shell=True)

Try using subprocess.check_call instead of os.system. This won't launch the process in a console window.

import subprocess
taskname = '...'
task = 'taskkill /im ' + taskname + ' /f'
subprocess.check_call(task, shell=True)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文