删除当前目录下所以文件夹
find ./ -type d -exec rm -rf {} ;
删除当前目录下所有文件(不包含文件夹)
find ./ -type f -exec rm -rf {} ;