有两种方法可以进行重定向。 两者均适用于Popen或Popen。
设置关键字参数Popen或Popen并指定命令,就像在那里一样。
由于您只是将输出重定向到文件,因此请设置关键字参数
Popen
其中对象指向Popen文件。
Popen比Popen更通用。
Popen不阻止,允许您在进程运行时与进程交互,或继续处理Python程序中的其他内容。 对Popen的调用返回call对象。
Popen确实阻止。 虽然它支持所有与Popen构造函数相同的参数,因此您仍然可以设置进程的输出,环境变量等,您的脚本将等待程序完成,call将返回表示进程退出状态的代码。
returncode = call(*args, **kwargs)
与呼叫基本相同
returncode = Popen(*args, **kwargs).wait()
Popen只是一个便利功能。 它在CPython中的实现是在subprocess.py中:
def call(*popenargs, timeout=None, **kwargs):
"""Run command with arguments. Wait for command to complete or
timeout, then return the returncode attribute.
The arguments are the same as for the Popen constructor. Example:
retcode = call(["ls", "-l"])
"""
with Popen(*popenargs, **kwargs) as p:
try:
return p.wait(timeout=timeout)
except:
p.kill()
p.wait()
raise
正如你所看到的,它是一个瘦的包装器,围绕着Popen。