Organising files
Finder shows '--' for folder sizes until you find one checkbox, and even then it is not the whole story.
In a Finder window: View → Show View Options (⌘J) → tick Calculate all sizes. List view then shows real folder sizes and can sort by size — which is the point, since finding the heavy folder is the whole job.
The setting is per-folder by default; Use as Defaults at the bottom applies it everywhere.
Finder walks each folder tree to sum it, so big folders fill in late. It caches results, so subsequent visits are faster.
Select a folder → ⌘I shows its size. Select several → ⌥⌘I opens a single inspector that updates with the selection — quicker than opening ten Info windows.
du -h -d 1 ~/Projects | sort -hr
Sizes every immediate subfolder, sorted. du counts what Finder sometimes cannot see (hidden files) and is the only way to size protected areas:
sudo du -h -d 2 /Library 2>/dev/null | sort -hr | head
occupy more than they sum to
When numbers disagree, du reflects the disk; Finder reflects the files. Both are right about different questions.
Turn on Calculate all sizes in View Options (⌘J), then sort list view by the Size column.
Sizing a folder means walking it. Finder does so only when Calculate all sizes is on.
Everywhere keeps track of every file on your Mac — including the folders Spotlight hides and drives you have unplugged. Free for a day, then $19 once.
Download for Mac