cmd delete the entire directory

rmdir to delete the entire directory
like saying I want to delete this 222 all directories and files in the directory, this syntax is:
rmdir / S / q 222
where:
/ S on behalf of deleted files in all subdirectories with them.
/ q is not it when you delete a file or directory, do not ask me Yes or No action.
To delete you can also specify the path to the current directory, such as:
rmdir / S / qd: \ 123 \ abc
This means that tells the computer, delete all everything to 123 data disk drive D inside the folder abc folder, but also Do not ask me if you want to delete.

Guess you like

Origin www.cnblogs.com/chenxi188/p/10977493.html