系统找不到指定的文件python子进程

时间:2014-08-18 01:50:20

标签: python

我正在尝试在python中运行一个简单的命令:

from subprocess import *    
check_output("ls")

当我运行它时会引发

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

1 个答案:

答案 0 :(得分:3)

Windows上不存在

ls; dir。此外,您可能需要传递shell=True,因为它内置于cmd.exe

如果它不是测试而您只想获取目录的内容,请改用os.listdir