Find Large Files On Mac Without Deleting The Wrong Thing
The fastest way to free space is to find the biggest folders first, then decide what is safe, what needs review, and what should be left alone.
Start With Read-Only Checks
These commands only measure size. They do not delete files.
du -sh ~/*
du -sh ~/Library/* 2>/dev/null
find ~/Downloads -type f -size +1G -maxdepth 2 -print
Usually Safe Wins
- Old app installers in Downloads, such as `.dmg`, `.pkg`, `.zip`, or `.xip` files.
- Regenerable developer caches after closing the related app.
- Package-manager caches cleaned with their own tools, such as Homebrew cleanup previews.
Review First
- Large media exports, project archives, client files, and desktop folders.
- Anything inside `~/Library/Application Support` unless you know the app and purpose.
- Docker volumes, virtual machines, Photos libraries, and active development projects.
Do Not Use Size Alone
A 20 GB installer may be disposable. A 20 GB project archive may be important. A good cleanup plan uses both size and context.
Want a safer list of what to delete?
Run the read-only scan, paste the output into the free diagnosis form, and get a risk-ranked first pass.
curl -O https://getsafedisks.com/scan.sh && bash scan.sh
Second set of eyes
Request the $29 large-file review payment link.
Use this when the biggest files include Library, Docker, Photos, Xcode, VM, or project folders and size alone is not enough to decide.