当前位置:  开发笔记 > 编程语言 > 正文

使用pythonw.exe时,Python subprocess.call()失败

如何解决《使用pythonw.exe时,Pythonsubprocess.call()失败》经验,为你挑选了2个好方法。

当我使用python.exe运行它时,我有一些Python代码可以正常工作,但如果我使用pythonw.exe则会失败.

    def runStuff(commandLine):
        outputFileName = 'somefile.txt'
        outputFile = open(outputFileName, "w")

        try:
            result = subprocess.call(commandLine, shell=True, stdout=outputFile)
        except:
            print 'Exception thrown:', str(sys.exc_info()[1])

    myThread = threading.Thread(None, target=runStuff, commandLine=['whatever...'])
    myThread.start()

我收到的消息是:

    Exception thrown: [Error 6] The handle is invalid

但是,如果我没有指定'stdout'参数,则subprocess.call()启动正常.

我可以看到pythonw.exe可能正在重定向输出本身,但我不明白为什么我被阻止为新线程指定stdout.



1> Piotr Lesnic..:

sys.stdinsys.stdout句柄无效,因为pythonw不提供控制台支持,因为它作为deamon运行,因此默认参数subprocess.call()失败.

Deamon程序有目的地关闭stdin/stdout/stderr并使用日志记录,因此您必须自己管理:我建议使用subprocess.PIPE.

如果你真的不关心子流程对错误和所有的说法,你可以使用os.devnull(我不确定它有多便携?)但我不建议这样做.



2> Charles Ande..:

为了记录,我的代码现在看起来像这样:

def runStuff(commandLine):
    outputFileName = 'somefile.txt'
    outputFile = open(outputFileName, "w")

    if guiMode:
        result = subprocess.call(commandLine, shell=True, stdout=outputFile, stderr=subprocess.STDOUT)
    else:
        proc = subprocess.Popen(commandLine, shell=True, stdout=subprocess.PIPE, stderr=subprocess.STDOUT, stdin=subprocess.PIPE)
        proc.stdin.close()
        proc.wait()
        result = proc.returncode
        outputFile.write(proc.stdout.read())

请注意,由于子进程模块中存在明显的错误,对Popen()的调用也必须为stdin指定一个管道,然后我们立即关闭它.

推荐阅读
ERIK又
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有