cd (command)
Syntax:
'cd <directory>' OR 'cd..', 'cd...', etc.
Use:
The 'cd' command will take you to a given directory. You can also use 'cd..' to go up a level, 'cd...' for two levels, and so on. You can actually go up as many levels as you want.
Examples:
'cd Documents' will take you to a folder called Documents, if it exists.
'cd C:\Python27' will take you to 'C:\Python27', if it exists.
'cd..' will take you up a level.
'cd...' will take you up two levels.
'cd...........' will take you up ten levels.