If you found that useful you may be interested in this too:
You can use .. at the start of a path to step back and then forward. So
Code:
C:\folder_1>cd ..\folder_2
C:\folder_2
You can use wildcards too. Very useful when folder names are long or have spaces.
Code:
C:\>cd pro*
C:\Program Files>
This only works if the folder name up to the wildcard is unique within the current folder. If there was a folder "Projects" in the root of C: this would not have worked. You would have to have entered cd prog* before it would work.
And you can combine the two.
Code:
C:\WINDOWS>cd ..\pro*
C:\Program Files>
You can also chain multiple backward steps together as long as you separate them with a backslash (or forward slash within Ruby code).
Code:
C:\WINDOWS\System32>cd ..\..
C:>
Bookmarks