gpt4 book ai didi

python - 如何在 Python 中使用 dir/s 命令?

转载 作者:可可西里 更新时间:2023-11-01 13:51:09 26 4
gpt4 key购买 nike

背景

我一直在批处理文件中使用命令 dir/s。但是,我无法使用 python 调用它。 注意:我使用的是 Python 2.7.3。

代码

import subprocess
subprocess.call(["dir/s"])

错误信息

Traceback (most recent call last):
File "<pyshell#2>", line 1, in <module>
subprocess.call(["dir/s"])
File "C:\Python27\lib\subprocess.py", line 493, in call
return Popen(*popenargs, **kwargs).wait()
File "C:\Python27\lib\subprocess.py", line 679, in __init__
errread, errwrite)
File "C:\Python27\lib\subprocess.py", line 896, in _execute_child
startupinfo)
WindowsError: [Error 2] The system cannot find the file specified

我试过更改引号,但没有任何效果。

如何使用 subprocess 调用 dir/s 模块?

最佳答案

怎么样

subprocess.call("dir/s", shell=True)

未验证。

关于python - 如何在 Python 中使用 dir/s 命令?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15207271/

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