Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

How can a batch file by itself see where it is located?

share|improve this question

2 Answers

up vote 10 down vote accepted

%0 is the name of the file. %~dp0 will be the absolute location of the file, with d being the drive, p being the path, and 0 being the filename.

share|improve this answer
Thanks! This works fine! – gdscei May 25 '09 at 15:34

Just call "cd"

set WORKING_DIRECTORY=%cd%

Used to be %~dp0, but that's not working for me in Vista.

share|improve this answer
2  
That's not the location of the cmd file, it's the working directory when you run it, which is not the same thing: "cd \" followed by "\directory\x.cmd" will have %cd% set to "\", not "\directory". – paxdiablo May 25 '09 at 3:26

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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