How do I find the local path on windows in a command prompt?

link|improve this question

1  
Very useful information, although I believe this now belongs in superuser.com – Ramon Zarazua Feb 2 '10 at 21:10
feedback

6 Answers

up vote 35 down vote accepted

this prints it in the console

echo %cd%
link|improve this answer
feedback

It is cd for "current directory".

link|improve this answer
If you need it in a variable or so, using the %CD% pseudo-variable is probably easier. – Joey May 28 '09 at 16:32
feedback

hmm - pwd works for me on Vista...

Final EDIT: it works for me on Vista because WinAvr installed pwd.exe and added \Program Files\WinAvr\Utils\bin to my path.

link|improve this answer
Doesn't work on WinXP or Win2003 – Joshua May 28 '09 at 16:38
Nor vista. Are you using powershell? – Daniel A. White May 28 '09 at 16:50
Nor Windows 7 ;) – Baversjo May 28 '09 at 17:15
I'm not using powershell. I seem to recall something about command extensions but can't find a checkbox anywhere for that. I've also got <tab> completion in my Command Prompt. I could swear there used to be an applet in Control Panel to enable command extensions but I can't find it now. – sean e May 28 '09 at 17:26
Command extensions are enabled by default on Windows NT and later. Tab completion is separate from that and was available from Windows 2000 onwards and enabled by default since XP. pwd only works here because I have a pwd.cmd with "echo %cd%" in my path. You can use gcm pwd in Powershell to check where it comes from on your machine (sort of like which(1), only better). – Joey May 28 '09 at 19:44
show 1 more comment
feedback

Open notepad as administrator and write:

@echo %cd%

Save it in c:\windows\system32\ with the name "pwd.cmd" (be careful not to save pwd.cmd.txt)

Then you have the pwd command.

link|improve this answer
feedback

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

C:\Documents and Settings\Scripter>

for unix use pwd command

Current working directory

link|improve this answer
feedback

dir | find "Directory"

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.