如何在命令提示符中找到Windows上的本地路径?


当前回答

你只需要输入

cd

它将返回当前路径。

其他回答

你可以简单地写上"。"点号。我有一个cmd应用程序,需要路径,我已经在需要的目录,我使用点符号。

希望能有所帮助。

cd不带参数,相当于Unix/Linux下的pwd。

从输入cd /?:

Displays the name of or changes the current directory.

[...]

Type CD without parameters to display the current drive and directory.

你只需要输入

cd

它将返回当前路径。

在PowerShell中,pwd是Get-Location的别名,所以你可以像在bash中那样简单地运行pwd

它也可以从cmd中调用,比如powershell -Command pwd,尽管cmd中的cd或echo %cd%也可以

嗯,pwd在Vista上对我有用…

最终编辑:它为我在Vista上工作,因为WinAvr安装了pwd.exe,并将\Program Files\WinAvr\Utils\bin添加到我的路径。