gpt4 book ai didi

python - 使用Python结束外部程序

转载 作者:行者123 更新时间:2023-11-30 23:53:03 25 4
gpt4 key购买 nike

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

片段:

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

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

最佳答案

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

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

关于python - 使用Python结束外部程序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6026791/

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