如何在Linux中列出空文件夹


Answers:


259

尝试以下方法:

find . -type d -empty

5
您需要将“ /”更改为要用作搜索根目录的目录。
柯比·托德

5
谢谢!它在我的系统上运行良好。要获取排序列表,请使用:find / -type d -empty | sort -u
acme 2012年

4
顺便要删除:find。-type d -empty -exec rmdir {} \;
斯科特(Scott)

4
当前目录中的空目录:find . -type d -empty。此外,空文件:find . -type f -empty在当前目录中以及更深的目录中。
starikovs 2015年

26
@Scott-为什么不find . -type d -empty -delete呢?
肯·夏普
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.