Python3 中的错误处理 (os.system).



在Python中,我从主python文件调用子文件。 在所有子 python 文件中,我都包含了 try 和 except 块。 在主文件中,我需要按照下面提到的顺序执行子文件。 如果语句中发现任何错误os.system("python SubFile1.py")有没有办法停止执行os.system("python SubFile2.py")语句? 而且我还需要在主python文件中获取错误详细信息。

这是主文件的代码片段:

import os
import sys
print("start here")
try:
print('inside try')
os.system("python SubFile1.py")
os.system("python SubFile2.py")
os.system("python SubFile4.py")
except:
print("Unexpected error:")
print(sys.exc_info()[0])
print(sys.exc_info()[1])
print(sys.exc_info()[2])
finally:
print('finally ended')

提前致谢

你应该考虑使用[subprocess][1]如果要捕获异常并结束另一个进程,不建议使用os.system,因为os.system()通过方法的退出代码指示失败。有关更多详细信息,您应该考虑阅读此答案:Python try block 不会捕获 os.system 异常

对于您的解决方法,您可以尝试此代码,但是我使用了子过程。

import os
import sys
import subprocess
print("start here")

files = ["first.py", "second.py"]
count=0
for file in files:
try:
cmd = subprocess.Popen(["python", file],stdout=subprocess.PIPE,stderr=subprocess.PIPE)
output, error = cmd.communicate()
if(error):
print(error)
sys.exit()
except OSError as e: 
print("inside exception", e)
sys.exit()
count+=1 

相关内容

  • 没有找到相关文章

最新更新