gpt4 book ai didi

Python subprocess.Popen.wait() 即使发生错误也返回 0

转载 作者:太空狗 更新时间:2023-10-30 01:09:23 32 4
gpt4 key购买 nike

我正在通过 Python 的子进程模块运行命令行实用程序。我使用命令行参数和 stdout=subprocess.PIPE 创建一个 subprocess.Popen() 对象,然后我使用 subprocess.wait() 等待任务完成并返回应该指示任务是否成功完成的返回码.

translate = subprocess.Popen(['gdal_translate', '-of', 'HFA', 'inDataset', 'outDataset'], stdout=subprocess.PIPE)
if translate.wait() == 0: print "Success"
else: print "Fail - %s" % translate.stdout.read()

如果我在 Windows 命令提示符下运行我的脚本,我可以看到 gdal_translate 提供的消息,他们说存在导致进程失败的错误,但我的脚本仍然打印“成功”。

如果返回代码始终为 0,我如何检查命令行实用程序报告的错误?

最佳答案

您可能会输出错误,但返回码仍为零。在您的代码中,您只捕获标准输出而不是标准错误。在下面的run函数中它会运行一个命令,等待执行结束,然后读取returncode标准错误和标准输出。如果有关于标准错误的任何内容,或者如果 returncode 不为零,那么它会将其视为失败。您可以在代码中看到四个示例调用。第一个是正常的成功调用,第二个有返回码 0 但有错误输出和标准输出。第三个示例具有非零返回码和错误输出,而最后一个示例具有非零返回码且根本没有输出。

代码

from subprocess import Popen, PIPE

def run(cmd):
print '-'*40
print 'running:', cmd
p = Popen(cmd, stderr=PIPE, stdout=PIPE, shell=True)
output, errors = p.communicate()
print [p.returncode, errors, output]
if p.returncode or errors:
print 'something went wrong...'

run("echo all is well")
run("echo out;echo error 1>&2")
run("this-will-fail")
run("exit 1")

输出

----------------------------------------
running: echo all is well
[0, '', 'all is well\n']
----------------------------------------
running: echo out;echo error 1>&2
[0, 'error\n', 'out\n']
something went wrong...
----------------------------------------
running: this-will-fail
[127, '/bin/sh: this-will-fail: not found\n', '']
something went wrong...
----------------------------------------
running: exit 1
[1, '', '']
something went wrong...

关于Python subprocess.Popen.wait() 即使发生错误也返回 0,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13978101/

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