I have tried
cd E:
cd "E:\android\webrtc_tutorial"
cd ..
However, i noticed that cd .. will successfully go up a directory. But I still cant change it to E drive. or the desired directory. (see pic2)
I have tried
cd E:
cd "E:\android\webrtc_tutorial"
cd ..
However, i noticed that cd .. will successfully go up a directory. But I still cant change it to E drive. or the desired directory. (see pic2)
 
    
     
    
    That's a common weird thing with cmd.
to change drive, just write the drive path and ':' to cd into it.
for example. to cd into E drive, write in the cmd:
E:
and then press enter.
 
    
    Also you can use the cd '/d' option which allows you to change the current drive , so to go from C:\Users to E:\android\webrtc_tutorial
You would write: cd /d E:\android\webrtc_tutorial
