MD and RD
MD
1.MD, the abbreviation of make directory, MD is equivalent to MKDIR
two。 Function: create a directory
3. Usage:
MD [drive:] path
4. Note:
MD can create multi-level directories by simply writing them in path, such as md dir1\ dir2\ dir3
RD
1. Rd _
two。 Features:
Delete directories (multi-level subdirectories)
3. Usage:
RD [/ S] [/ Q] [drive:] path
/ S-Delete directories and subdirectories and all files under subdirectories
/ Q-quite, quiet mode; delete directly without confirming to the user
4. Note:
4.1The directory deleted by RD must be empty. If the directory is not empty, you can add / S or delete files first and then delete the directory with RD.