find . -maxdepth 1 -size 0 | xargs rm -rf 说明:这种文件大小为0,并且在上传的当前目录中(不要误删子目录中大小为0的文件),使用-size指定大小为0,使用-maxdepth指定为当前目录。 链接: 原文链接.