您好, 欢迎来到 !    登录 | 注册 | | 设为首页 | 收藏本站

Python:“subprocess.Popen”检查成功和错误

5b51 2022/1/14 8:22:56 python 字数 3063 阅读 560 来源 www.jb51.cc/python

我想检查子进程是否成功执行或失败.目前我已经提出了一个解决方案,但我不知道它是否正确可靠.是否保证每个进程只将st错误只输出到stdout: 注意:我不想仅仅重定向/打印输出.我已经知道了怎么办 pipe = subprocess.Popen(command, stdout=subprocess.PIPE,

概述

pipe = subprocess.Popen(command,stdout=subprocess.PIPE,stderr=subprocess.PIPE,universal_newlines=True)

if "" == pipe.stdout.readline():
    print("Success")
    self.isCommandExectutionSuccessful = True

if not "" == pipe.stderr.readline():
    print("Error")
    self.isCommandExectutionSuccessful = True

或者:

if "" == pipe.stdout.readline():
       print("Success")
       self.isCommandExectutionSuccessful = True
   else:
       print("Error")
       self.isCommandExectutionSuccessful = False

和:

if not "" == pipe.stderr.readline():
       print("Success")
       self.isCommandExectutionSuccessful = True
   else:
       print("Error")
       self.isCommandExectutionSuccessful = False

check_call方法在这里可能是有用的.看到这里的python docs:https://docs.python.org/2/library/subprocess.html#subprocess.check_call

然后,您可以使用以下内容

try:
  subprocess.check_call(command)
except subprocess.CalledProcessError:
  # There was an error - command exited with non-zero code

然而,这依赖于命令返回0的退出代码,用于成功完成,并且返回错误的非零值.

如果还需要捕获输出,那么check_output方法可能更合适.如果需要,也可以重定向标准错误.

try:
  proc = subprocess.check_output(command,stderr=subprocess.STDOUT)
  # do something with output
except subprocess.CalledProcessError:
  # There was an error - command exited with non-zero code

请参阅这里的文档:https://docs.python.org/2/library/subprocess.html#subprocess.check_output

总结

以上是编程之家为你收集整理的Python:“subprocess.Popen”检查成功和错误全部内容,希望文章能够帮你解决Python:“subprocess.Popen”检查成功和错误所遇到的程序开发问题。


如果您也喜欢它,动动您的小指点个赞吧

除非注明,文章均由 laddyq.com 整理发布,欢迎转载。

转载请注明:
链接:http://laddyq.com
来源:laddyq.com
著作权归作者所有。商业转载请联系作者获得授权,非商业转载请注明出处。


联系我
置顶