首页 >后端开发 >Python教程 >如何将子进程输出重定向到 Python 中的文件?

如何将子进程输出重定向到 Python 中的文件?

Linda Hamilton
Linda Hamilton原创
2024-11-13 15:16:02744浏览

How can I redirect subprocess output to a file in Python?

使用 Subprocess 在 Python 中重定向输出

在 Python 中,使用 subprocess 将输出重定向到文件可以通过调用 subprocess 时的 stdout 参数来完成.run().

考虑以下命令行命令:

cat file1 file2 file3 > myfile

此命令连接文件“file1”、“file2”和“file3”的内容,并将输出定向到文件“myfile”。

在 Python 中执行类似操作使用子流程,请按照以下步骤操作:

  1. 为子流程调用创建参数列表,包括命令(例如,['cat'])和输入文件名。
  2. 以写入模式打开要将输出重定向到的文件(本例中为“myfile”)。
  3. 使用参数列表调用 subprocess.run(),指定打开的文件句柄作为 stdout 参数。

示例代码 (Python 3.5 ):

import subprocess

# Create a list of input file names
input_files = ['file1', 'file2', 'file3']

# Create the command argument list
my_cmd = ['cat'] + input_files

# Open the output file in write mode
with open('myfile', "w") as outfile:
    # Run the subprocess and redirect its output to the file
    subprocess.run(my_cmd, stdout=outfile)

通过遵循这种方法,您可以有效地将子进程的输出重定向到指定文件。

以上是如何将子进程输出重定向到 Python 中的文件?的详细内容。更多信息请关注PHP中文网其他相关文章!

声明:
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn