We know that echo %cd% command print working directory, Assume that it is "C:\test\bin\run" I want to know how to remove "run" from the string. second time "run" directory can be "stop" directory. therefore we can't use string replace command. what is I think to do is remove the string after last "\". Anyone know how to do this in windows commandline(cmd)

link|improve this question

20% accept rate
This shows how to do it: stackoverflow.com/questions/778135/… – onteria_ May 15 '11 at 19:55
feedback

1 Answer

up vote 0 down vote accepted

If it's okay to change dirs during the process how about:

set x=%cd%
cd ..
set parent=%cd%
cd %x%
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.