how to change path in cmd code example

Example 1: how to change path in cmd to another path?

Directory> cd...
Directory> (directory you want)

Example 2: how to navigate to a folder in cmd windows 10

Just use "open [path_to_dir]" in Unix or "start [path_to_dir]" in Windows as:
open .	#Open current directdory in Unix
start . #Open current directory in Windows

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