Search code examples
cmddosworking-directory

change working directory to one located on a different volume in cmd


In the command prompt I am able to change the working directory by typing CD "new path"

for example take a look on how I am able to select directories that are located in my C drive:

enter image description here

but note that when I select a directory located in a different volume (A:...) the command prompt will not change the working directory...


Solution

  • cd /d A:\Users does what your looking for.