How to Change the Path in Command Prompt?

Open Command Prompt

Type `cd` followed by the folder path

Press Enter

Use `cd ..` to go up one folder

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

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

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

Use `dir` to check the current folder contents

Use `echo %cd%` to display the current path

Suggested for You

Trending Today