Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How can you get the directory of the script that was run and use it within the .cmd file?

share|improve this question
possible duplicate of How to get the path of the batch script in Windows? – Celada Dec 24 '12 at 5:01

3 Answers

up vote 11 down vote accepted

Raymond Chen has a few ideas:

http://blogs.msdn.com/oldnewthing/archive/2005/01/28/362565.aspx

Also the comments in the article are well worth scanning.

Update: For the benefit of ketorin and others who didn't read the comments in the article:

http://blogs.msdn.com/oldnewthing/archive/2005/01/28/362565.aspx#362741

This covers the use of %~dp0.

share|improve this answer
3  
This does not answer the question. %CD% gives the current directory, while what was asked was the directory of the script. – ketorin Oct 7 '08 at 11:58
1  
@ketorin: This DOES answer the question. %CD% will change if the script itself change directory throughout it's usage (pushd/cd/..) but %~dp0 will NOT change and always point to where the script is located. – Jay Sep 8 '09 at 17:18

This is equivalent to the path of the script:

%~dp0

Here's a webpage with more resources on this sort of thing: http://www.ss64.com/ntsyntax/parameters.html

share|improve this answer
Exactly what I needed. And I linked this anwser to my blog, as a reminder :) – Olivier H Jan 7 at 14:58
for /F "eol= delims=~" %%d in ('CD') do set curdir=%%d

pushd %curdir%

Source

share|improve this answer

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.