How To Change Directory At Command Prompt?

Type `cd` followed by the folder path, then press Enter

Use `cd foldername` to move into a subfolder

Use `cd ..` to move up one directory level

Use `cd ` to go to the root of the current drive

Use `cd /d D:Folder` to change both drive and directory

Use quotes for paths with spaces, such as `cd “C:Program Files”`

Use `cd` alone to display the current directory

Use `pushd` and `popd` to temporarily switch directories and return later

Suggested for You

Trending Today