gpt4 book ai didi

python - 如何在 Windows 上使用带有内置命令的 subprocess.Popen

转载 作者:可可西里 更新时间:2023-11-01 10:04:03 26 4
gpt4 key购买 nike

在我的旧 python 脚本中,我使用以下代码来显示 Windows cmd 命令的结果:

print(os.popen("dir c:\\").read())

正如 python 2.7 文档所说,os.popen 已过时,建议使用 subprocess。我遵循文档如下:

result = subprocess.Popen("dir c:\\").stdout

我收到错误信息:

WindowsError: [Error 2] The system cannot find the file specified

你能告诉我使用subprocess模块的正确方法吗?

最佳答案

您应该使用调用 subprocess.Popenshell=True 如下:

import subprocess

result = subprocess.Popen("dir c:", shell=True,
stdout=subprocess.PIPE, stderr=subprocess.PIPE)

output,error = result.communicate()

print (output)

More info on subprocess module.

关于python - 如何在 Windows 上使用带有内置命令的 subprocess.Popen,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39716557/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com