Running low on disk space is one of those problems that sneaks up fast, especially on Macs with soldered-in storage. The quickest fix is almost always the same: find the biggest files, decide what to keep, and remove the rest. The challenge is that macOS hides a lot of that bulk inside opaque folders like ~/Library, /private/var, and iOS backups. This guide ranks the best apps to find large files on Mac in 2026, covering both free and paid tools, so you can get your storage back without guessing.
What to Look For in a Mac Large File Finder
Not all tools are equal. Before picking one, consider these criteria:
- Scan speed: Does it index your whole drive in seconds or minutes?
- Filtering: Can you filter by file type, age, or location (not just size)?
- Safe deletion: Does it show you what it plans to remove before it removes it?
- System folder awareness: Can it surface files inside
~/Library/Caches,~/Library/Application Support, and/private/var/folders? - Privacy: Does it run fully on-device, or does it upload file metadata to a server?
With those criteria in mind, here are the top tools ranked for everyday use in macOS Sonoma, Sequoia, and Tahoe.
1. Crumb (Menu-Bar App, On-Device)
Crumb sits in the menu bar and includes a Visualize view that lists the largest items across your entire Mac, broken down by folder. It is one of the fastest ways to answer "what is taking up all my space?" without launching a separate window or waiting for a long initial scan.
What sets Crumb apart from a pure treemap tool is the reviewable plan it builds before deleting anything. Every item flagged for removal gets an "is this safe to delete?" check, so you are not blindly wiping app support folders that some apps still need. Crumb runs entirely on your Mac and requires no account, which matters if you are working on sensitive files.
Best for: people who want a single tool that covers large files and caches, app leftovers, and duplicates in one pass.
2. DaisyDisk (Paid, Visual Treemap)
DaisyDisk is the gold standard for visual disk mapping on macOS. It renders your drive as a sunburst diagram where each segment is proportional to file size, making it effortless to spot the biggest offenders at a glance. Click a segment, drill into the folder, and drag files to a collection before sending them to the Trash in one batch.
The scan is impressively fast, even on large external drives. The main limitation is that it does not flag "safe to delete" categories the way a cleaner does. You still need to know whether a folder is safe to empty. That said, for raw large-file discovery it remains one of the best mac large file finder options available.
Best for: power users who are comfortable making their own deletion decisions and want the clearest visual layout.
3. GrandPerspective (Free, Open Source)
GrandPerspective is a free, open-source treemap viewer that has been maintained since the early days of macOS. It uses a rectangular treemap layout (compared to DaisyDisk's sunburst) and is surprisingly capable given its price. Each rectangle represents one file, sized proportionally, and you can click any block to see the full path.
It does not delete files itself. Instead, it opens the file in Finder for you to trash manually. If you are comfortable in Terminal, you can also copy the path and run rm or move it to Trash via trash (a Homebrew utility). Download GrandPerspective from the Mac App Store or its SourceForge page.
Best for: budget-conscious users who want a visual overview and do not mind a manual deletion step.
4. OmniDiskSweeper (Free)
OmniDiskSweeper from the Omni Group is a free column-browser that sorts every folder by size, largest first. It is one of the simplest find-biggest-files-mac tools available: no frills, no subscription, just a ranked list you can drill into folder by folder.
One practical tip: launch OmniDiskSweeper from Terminal with sudo to scan directories that need elevated permissions, such as /private/var or other users' home folders on a shared Mac:
sudo /Applications/OmniDiskSweeper.app/Contents/MacOS/OmniDiskSweeper
Without sudo, those protected directories show a tiny size or are skipped entirely, so you will miss a significant chunk of your disk. It does offer a "Move to Trash" button, but there is no safety check, so proceed carefully in system directories.
Best for: users who want a completely free, no-install-required column view of disk usage.
5. CleanMyMac (Subscription)
CleanMyMac from MacPaw is the most full-featured commercial option on this list. Its Large & Old Files module lets you filter by size threshold, file type, and last-accessed date, which is particularly useful for hunting down video renders or old disk images you forgot about. It also integrates app uninstallation, malware scanning, and cache cleaning in one interface.
The trade-off is cost: CleanMyMac now runs on a subscription model. If you only need large-file detection occasionally, the subscription may be more than you need. But if you want one tool that handles every aspect of Mac maintenance, it covers that ground well.
Best for: users who want an all-in-one subscription tool with guided workflows and a polished interface.
6. Finder's Built-In Search (Free, No Install)
Before reaching for any third-party app, macOS Finder can surface large files surprisingly well. Open a Finder window, press Command + F, and set the search scope to "This Mac". Then click the Kind filter dropdown and change it to "File Size", set the condition to "is greater than", and enter a size like 500 MB or 1 GB.
You can also do this from Terminal using find. To list all files over 1 GB anywhere in your home folder:
find ~/ -type f -size +1G 2>/dev/null | sort
Or use du to see the top space consumers in a specific directory, sorted by size:
du -sh ~/Library/Application\ Support/* | sort -rh | head -20
These commands do not provide a deletion workflow, but they are fast, free, and great for a quick audit before deciding whether a dedicated app is worth it.
Best for: one-off audits where installing a new app feels like overkill.
7. Disk Diag (Free, Mac App Store)
Disk Diag is a lightweight free app available from the Mac App Store that shows a category breakdown of disk usage (Applications, Documents, Movies, etc.) and lets you drill into each category to identify large files. It is less visual than DaisyDisk but faster to launch than a full scan-based tool.
The app does not offer direct deletion, but it integrates cleanly with Finder so you can navigate to any file immediately. It is a good starting point for users who are new to disk management and want something approachable without any setup.
Best for: Mac users who want a quick category overview from the App Store without any configuration.
Which Tool Should You Use?
Here is a quick decision map based on your situation:
- You want one app that finds large files and cleans caches and junk: Crumb or CleanMyMac.
- You want the clearest visual treemap and are comfortable deciding what to delete: DaisyDisk.
- You want free and do not mind Terminal: OmniDiskSweeper with
sudo, or thefindandducommands above. - You want free and visual: GrandPerspective.
- You just need a quick check right now: Finder's built-in Command+F search or Disk Diag.
Common Places Large Files Hide on macOS
Whatever tool you choose, these are the directories that consistently hold the most recoverable space in 2026:
~/Library/Caches: app caches that are safe to clear for most apps~/Library/Application Support: app data, some of which is stale from uninstalled apps~/Moviesand~/Downloads: user files that accumulate silently/private/var/folders: temporary system files (needssudoto scan fully)~/Library/Containers: sandboxed app data, sometimes very large for email or messaging apps- iOS and iPadOS backups stored in
~/Library/Application Support/MobileSync/Backup
If you are using Crumb, the Visualize view surfaces items from all of these locations in a single ranked list, with a plain-English explanation of what each entry is before you decide to remove it. That context is often what the free tools are missing.