in the The directory creation in Linux is to use mkdir, that has the command to create directories naturally have the command to delete directories, the command to delete directories is rmdir.
Command format:
rmdir [ options ] directory
Parameter options:
-P can be removed recursively, but non-empty directories cannot be deleted
-V Show Delete process
Command instance:
1),rmdir cannot delete non-empty directory
Rmdir 222
[Email protected] ~]# tree
.
├── 1.txt
├── 222
│ └── 123
│ ├── 123
│ │ └── 1.txt
│ ├── 1.txt
│ └── 2.txt
├── 2.txt
├──anaconda-ks.cfg
├── and Printon the standard output
├──Install.log
└──Install.log.syslog
3 Directories, 9 files
Delete will error:
[[Email protected]~]# rmdir 222
RmDir: Delete "222" failed : directory not empty
[Email protected] ~]#
This article is from the "Eight Miles Bridge" blog, please be sure to keep this source http://baliq.blog.51cto.com/5984262/1688223
RmDir command for the CentOS Linux system command