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.

Here's the question:

set Pathname = C:\Program Files
cd %Pathname%
pause

The above doesn't change the directory, as I would expect. Can anybody please tell me why?

share|improve this question

1 Answer

up vote 8 down vote accepted

The set statement doesn't treat spaces the way you expect; your variable is really named Pathname[space] and is equal to [space]C:\Program Files.

Remove the spaces from both sides of the = sign, and put the value in double quotes:

set Pathname="C:\Program Files"

Also, if your command prompt is not open to C:\, then using cd alone can't change drives. Use cd /d %Pathname% or pushd %Pathname% instead.

share|improve this answer
Many thanks. It was the spaces. Silly me :) – Shunyata Kharg Nov 9 '10 at 12:25
Probably worth mentioning that the quotes aren't in general required to use SET with a string containing spaces. SET C:\Program Files would also have worked. – MonkeyPushButton Jan 30 at 17:39

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.