Windows命令行:CD&执行Python

时间:2014-06-06 16:27:34

标签: python windows command cd

我在从Windows 7命令提示符执行python脚本时遇到问题。我已经尝试了许多不同的命令来运行脚本。是不是:

python e:\filepath\pythonScript.py
python pythonScript.py
cd\ & pythonScript.py
cd\ && e:\filepath\pythonScript.py

我一直都是这样:

[Errno 2] No such file or directory

每当我使用命令时:

dir

即使我使用:

,也会打印c:驱动器的内容
cd c: && dir

如果有人能够了解更改目录并在Windows 7中执行python脚本,我会非常感激。

1 个答案:

答案 0 :(得分:1)

如果您正在谈论更改为新驱动器,只需键入驱动器号后跟冒号

C:\>e:
E:\>dir


Volume in drive E has no label.
 Volume Serial Number is 9016-4EF8

 Directory of E:\
18-Apr-14  02:16 AM    <DIR>          assets
01-May-14  04:22 AM    <DIR>          store
06-Jun-14  09:32 AM                22 test.py

E:\>cd assets


E:\assets>python test.py
hello world

C:\>e: && cd assets && dir
 Volume in drive E has no label.
 Volume Serial Number is 9016-4EF8

 Directory of E:\assets

  C:\>e: && cd \  && cd assets && dir
       ^     ^          ^           ^
ch drive && go root&&go fldr && list foldr contents