I\'m using cmd.exe (C:\\WINDOWS\\System32\\cmd.exe) and I have to change my current directory to \"D:\\temp\" i.e. temp folder in the D drive.
cmd.exe
When I tr
Another alternative is pushd, which will automatically switch drives as needed. It also allows you to return to the previous directory via popd:
pushd
popd
C:\Temp>pushd D:\some\folder D:\some\folder>popd C:\Temp>_