2

错误信息:

Failed to open output_file_path/**.txt

代码:

cmd = 'showTxt "%s" > "%s"' % (file_path, output_file_path)
LoggerInstance.log('[cmd] '+cmd)

#os.system(cmd)
splited_cmd=shlex.split(cmd)

p = subprocess.Popen(splited_cmd, stderr=subprocess.PIPE)
#p.wait()
output = p.stderr.read()
print output

LoggerInstance.log('[console std error]'+ output)

如何将标准输出重定向到 cmd 中的文件?

4

1 回答 1

2

您可以为 提供一个file-handlerasstdout参数Popen,即:

p = subprocess.Popen(splited_cmd,
                     stderr=subprocess.PIPE,
                     stdout=open(output_file_path, "w"))

当然,准备好捕获它可以抛出的异常。

于 2012-10-12T14:04:52.897 回答