How can a batch file by itself see where it is located?
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.
|
|
|
%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. |
|||
|
|
|
Just call "cd"
Used to be %~dp0, but that's not working for me in Vista. |
|||||
|