Python でのサブプロセスによる出力のリダイレクト
サブプロセスを使用して出力をファイルにリダイレクトするには、stdout 引数を利用してファイル ハンドルを指定します。
import subprocess # Specify the input files and command input_files = ['file1', 'file2', 'file3'] command = ['cat'] + input_files # Create a file handle for the output file with open('myfile', "w") as outfile: # Redirect output to the file handle subprocess.run(command, stdout=outfile)
Python 3.5 以降では、このアプローチが使用される方法よりも優先されます。 shlex.split を使用して文字列から変換された args 引数を指定した subprocess.call。これにより、出力が確実にファイルに適切にリダイレクトされます。
同じ機能を Python で直接実現できるため、この場合、cat などの外部コマンドを使用する必要がないことに注意してください。
以上がPython でサブプロセスを使用して出力をファイルにリダイレクトする方法の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。