how to change folder directory in cmd code example

Example 1: how to change directory in cmd

In windows shell is commanly known as the command prompt or the 
cmd...
to change the directory you can just type cd and type your desired directory 
which is present inside the current directory...

Example 2: change directory cmd

cd  
comment to change directory in the cmd

Example 3: move to folder in command line windows

# move to a directory:
cd myFolder

# move out of a directory
cd ..

# move to another hard disk
# in this example i want to move to drive F, just type:
f:
# and hit enter

Tags:

Misc Example