Windows相当于UNIX pwd

如何在命令提示符窗口中find本地path?

这将打印在控制台中

echo %cd% 

或者将这个命令粘贴到CMD中,那么你将有pwd

 (echo @echo off echo echo ^%cd^%) > C:\WINDOWS\pwd.bat 

这是“当前目录”的cd

以pipe理员身份打开记事本并写入:

 @echo %cd% 

将其保存在名为“pwd.cmd”的c:\ windows \ system32 \中(注意不要保存pwd.cmd.txt)

然后你有pwd命令。

cd ,

它会给当前目录

 D:\Folder\subFolder>cd , D:\Folder\subFolder 

没有任何参数的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. 

chdir或cd提供当前的工作目录

嗯 – 密码为我在Vista上工作…

最终编辑 :它适用于我在Vista上,因为WinAvr安装pwd.exe并添加\ Program Files \ WinAvr \ Utils \ bin到我的path。

dir | find“目录”

C:\ Documents and Settings \ Scripter> echo%cd%C:\ Documents and Settings \ Scripter

C:\ Documents and Settings \ Scripter>

对于unix使用pwd命令

当前工作目录

你可以简单地把“。” 点标志。 我有一个cmd的应用程序需要的path,我已经在需要的目录,我用点符号。

希望能帮助到你。