当我使用 pythonw.exe 在 Windows 上运行以下脚本时,我希望能够获取 stdout 和 stderr 的内容:
import subprocess
import sys
import os
import string
import time
tmpdir = 'c:/temp'
cmd = 'dir c:'
tmpfile = "tmp_%f" % (time.time())
tmpfile = os.path.normpath(os.path.join(tmpdir,tmpfile))
tmpfile2 = tmpfile+".bat"
tmpfile3 = tmpfile+".txt"
fa = open(tmpfile2,'w')
fa.write("@ECHO OFF > NUL\n")
fa.write('call '+cmd+"\n")
fa.close()
wcmd = []
wcmd.append(tmpfile2)
startupinfo = subprocess.STARTUPINFO()
startupinfo.dwFlags |= subprocess._subprocess.STARTF_USESHOWWINDOW
fb = open(tmpfile3,'w')
fb.write("\n")
fb.write(tmpfile2+"\n")
try:
procval = subprocess.Popen(wcmd, startupinfo=startupinfo, stdout=subprocess.PIPE, stderr=subprocess.STDOUT).communicate()
fb.write(str(procval)+"\n")
fb.write("Sucess")
fb.close()
except:
fb.write(str(procval)+"\n")
fb.write("Failure")
fb.close()
当我使用 python.exe 执行它时,我得到了预期的输出。当我使用 pythonw.exe 运行它时,我最终会出现异常。如果我只使用命令和 startupinfo 标志运行 popen,则命令将成功完成,但无法访问子进程中的数据。我读到的所有内容都表明这应该有效,但必须遗漏一些东西。任何帮助将不胜感激。
谢谢,兰迪