Windows Cd, Md, Rd Commands switches Flashcards
Windows command prompt
1
Q
cd [path]
A
Changes to the specified directory
2
Q
cd /d [drive:] [path]
A
Changes to the specified directory on the drive
3
Q
cd ..
A
Changes to the directory that is up one level
4
Q
cd \
A
Changes to the root directory of the drive
5
Q
md [drive:][path]
A
makes a directory in the specified path. If you don’t specify a path, the directory will be created in your current directory
6
Q
rd[drive:] [path]
A
removes(deletes) the specified directory
7
Q
rd /s [drive:] [path]
A
removes all directories and files in the specified directory, including the specified directory iteself.
8
Q
rd /q [drive:] {path]
A
Quiet mode. You won’t be asked wether you’re sure you want to delete the specified directory when you use /s