使用输入从python运行exe文件并保存输出



我想从python运行一个带有输入的exe文件,并在不打印输出的情况下保存输出,有人知道我该怎么做吗?

可以。https://docs.python.org/2/library/subprocess.html#module-子流程

import subprocess
with open('mylog.txt', 'a') as log, open('myerror.txt', 'a') as error_log:
process = subprocess.call(['ls', '-l'], stderr=error_log, stdout=log)

相关内容

  • 没有找到相关文章

最新更新