i have plenty of empty directories and i wonder if there's a way to display actual direcory sizes (after some sort of scan maybe) in MC
Tell me more
×
Server Fault is a question and answer site for
professional system and network administrators. It's 100% free, no registration required.
|
Just go to "Command" menu and select "Show directory sizes" in desired root directory. |
|||
|
|
|
press ctrl + space on current directory and this will show it size. Also you can use visual select to apply this command on multiply items. |
|||
|
|
find . -type d -empty. Or evenfind . -depth -type d -empty -delete(but be careful: some empty dirs are important). – mivk Jun 6 '12 at 21:19