在CentOS系统中,删除文件夹的方法有两种:
rm -r folder_name
其中,-r 参数表示递归删除文件夹及其内容。
rmdir folder_name
rmdir 命令只能删除空文件夹,如果文件夹中还有文件或子文件夹,则无法删除。