子流程Popen和call有什么区别(如何使用它们)?

子流程Popen和call有什么区别(如何使用它们)?,第1张

子流程Popen和call有什么区别(如何使用它们)?

有两种方法可以进行重定向。两者都适用于

subprocess.Popen
subprocess.call

  1. 设置关键字参数

    shell = True
    executable = /path/to/the/shell
    并在那里指定命令。

  2. 由于您只是将输出重定向到文件,因此请设置关键字参数

    stdout = an_open_writeable_file_object

对象指向

output
文件的位置。

subprocess.Popen
subprocess.call

Popen
不会阻塞,允许您在进程运行时与它进行交互,或者在Python程序中继续进行其他 *** 作。调用
Popen
返回一个
Popen
对象。

call
确实会
阻止。它支持与
Popen
构造函数相同的所有参数,因此您仍可以设置进程的输出,环境变量等,脚本将等待程序完成,并
call
返回表示进程退出状态的代码。

returnpre = call(*args, **kwargs)

与通话基本相同

returnpre = Popen(*args, **kwargs).wait()

call
只是一种便利功能。它在CPython的实现是在subprocess.py:

def call(*popenargs, timeout=None, **kwargs):    """Run command with arguments.  Wait for command to complete or    timeout, then return the returnpre attribute.    The arguments are the same as for the Popen constructor.  Example:    retpre = call(["ls", "-l"])    """    with Popen(*popenargs, **kwargs) as p:        try: return p.wait(timeout=timeout)        except: p.kill() p.wait() raise

如您所见,它周围是薄薄的包装纸

Popen



欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5643479.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-16
下一篇 2022-12-16

发表评论

登录后才能评论

评论列表(0条)

保存