我正在尝试在python中运行一个简单的命令:
from subprocess import *
check_output("ls")
当我运行它时会引发
Error:
WindowsError: [Error 2] The system cannot find the file specified
答案 0 :(得分:3)
ls
; dir
。此外,您可能需要传递shell=True
,因为它内置于cmd.exe
。
如果它不是测试而您只想获取目录的内容,请改用os.listdir
。