删除空文件:
find . -name "*.csv" -type f -size 0c | xargs -n 1 rm -f
删除空目录:
find . -depth -empty -type d -print | xargs rmdir