任何人都可以解释这里发生的事情吗?即使内置的cmd.exe命令也不起作用:
Python 3.4.0 (v3.4.0:04f714765c13, Mar 16 2014, 19:25:23) [MSC v.1600 64 bit (AM
D64)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>> import subprocess
>>> subprocess.call('dir')
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "D:\Python34\lib\subprocess.py", line 535, in call
with Popen(*popenargs, **kwargs) as p:
File "D:\Python34\lib\subprocess.py", line 848, in __init__
restore_signals, start_new_session)
File "D:\Python34\lib\subprocess.py", line 1104, in _execute_child
startupinfo)
FileNotFoundError: [WinError 2] The system cannot find the file specified
>>>
答案 0 :(得分:6)
要使用'dir'
,您必须通过shell=True
:
>>> import subprocess
>>> subprocess.call('dir', shell=True)
你必须这样做,因为dir
内置在shell本身,它不是一个独立的控制台应用程序。 subprocess.Popen
documentation:
在具有shell = True的Windows上,COMSPEC环境变量指定 默认的shell。 您需要指定shell = True的唯一时间 Windows是您希望执行的命令内置于 shell(例如dir或copy)。您不需要shell = True来运行批处理 文件或基于控制台的可执行文件。