Running low on disk space? Before you delete anything, you need to know what is actually taking up room. This guide walks you through every built-in macOS method to find large files on your Mac — from Finder smart folders to Terminal one-liners — and explains when a dedicated disk scanner saves you hours of clicking. By the end you will know exactly where your storage went and which files are safe to remove.
Method 1: Apple's Built-In Storage Panel (Quickest Start)
Apple's System Settings storage view is the fastest first look, even though it does not show individual file paths.
- Open System Settings (macOS Ventura and later) or System Preferences > Storage (Monterey).
- Click the Apple menu () in the top-left, then System Settings > General > Storage.
- Wait for the bar chart to finish calculating — this can take 30–60 seconds on a full drive.
- Click Documents in the list on the right, then choose the Large Files tab.
- macOS lists files larger than roughly 100 MB, sorted by size. Select any item and press the Delete key, or right-click and choose Delete.
Limitation: This panel only shows a curated subset of your files. It skips Library caches, application containers, and developer directories entirely. Use it as a quick win, not a complete audit.
Method 2: Finder Smart Folder — Find Big Files Mac-Wide
A Finder Smart Folder is a saved search that updates live. You can create one that always shows every file above a size threshold.
- In Finder, press Command + F to open a search.
- Make sure "This Mac" is selected in the scope bar at the top.
- Click the + button on the right to add a search criterion.
- In the first drop-down, choose File Size. (If you do not see it, choose Other… and search for "File Size".)
- Set the second drop-down to is greater than and type 500 in the field, then choose MB from the units menu.
- The results populate immediately. Click the column header Size to sort largest first.
- To save this search: click Save in the toolbar, give it a name like "Large Files > 500 MB", and check Add To Sidebar.
You can adjust the threshold (100 MB, 1 GB) to suit your drive. Right-click any result and choose Get Info to see the full path before deciding whether to delete it.
Method 3: Spotlight Size Queries
Spotlight supports basic file-size predicates. Press Command + Space and type a query like:
kind:movie size:>500MB
Or for a broader catch-all:
size:>1GB
Spotlight results are limited to indexed locations and do not show system directories or hidden files. Treat this method as a fast scan for large media files — videos, disk images, and archives — not a thorough audit.
Method 4: Terminal — Locate Large Files on macOS Precisely
The find command gives you complete control and reaches directories that Finder hides.
Find files larger than 1 GB anywhere in your home folder
find ~ -type f -size +1G 2>/dev/null | sort
Find the largest files on the whole drive (requires sudo)
sudo find / -type f -size +500M -not -path "/System/Volumes/Data/.Spotlight-V100/*" 2>/dev/null \
| xargs du -sh 2>/dev/null \
| sort -rh \
| head -40
The 2>/dev/null suppresses permission-denied warnings. The sort -rh sorts human-readable sizes largest first. Add -not -path "/proc/*" exclusions for any virtual filesystems that appear on your setup.
Check what is consuming space in specific hotspots
du -sh ~/Library/Caches/* | sort -rh | head -20
du -sh ~/Library/Application\ Support/* | sort -rh | head -20
du -sh /Library/Caches/* | sort -rh | head -20
Common Places Where Large Files Hide on Mac
- ~/Library/Caches/ — Application caches; usually safe to delete while the app is closed, but the app will rebuild them.
- ~/Movies/ — iMovie projects, screen recordings, and downloaded video files.
- ~/Library/Application Support/ — App data including game saves, Xcode simulators, and Docker layers. Do not blindly delete here.
- /Library/Developer/CoreSimulator/Devices/ — iOS simulator runtimes; can reach 30–60 GB for Xcode users.
- ~/Library/Developer/Xcode/DerivedData/ — Build artifacts; safe to delete, Xcode rebuilds on next build.
- ~/Downloads/ — Disk images (.dmg), archives, and old installers accumulate here silently.
- ~/.Trash/ — Files you have deleted but not emptied.
- /private/var/folders/ — System temporary files; managed by macOS, generally leave these alone.
What Is Safe (and Not Safe) to Delete
| Location | Safe to Delete? | Notes |
|---|---|---|
| ~/Library/Caches/ | Generally yes | Close the app first; it rebuilds the cache on next launch |
| ~/Downloads/ (old .dmg files) | Yes | Verify the app is already installed before removing the installer |
| Xcode DerivedData | Yes | Xcode rebuilds; expect a longer first build afterward |
| iOS Simulator runtimes | Yes, selectively | Remove runtimes for iOS versions you no longer test via Xcode > Settings > Platforms |
| ~/Library/Application Support/ | Risky | Contains app preferences, saved state, and databases — check before deleting |
| /System/ and /usr/ | No | macOS system files; deletion can break the OS |
| /private/var/folders/ | No | Managed by macOS automatically |
Remember: deletion is permanent unless you move items to the Trash first. Always verify a file's purpose before removing it, especially anything outside your home folder.
When to Use a Dedicated Disk Scanner
The manual methods above work, but they have real gaps: Finder cannot see hidden directories, Spotlight skips system folders, and Terminal requires comfort with the command line. A visual treemap scanner shows the entire drive at once, including the corners that built-in tools miss.
Crumb is a native macOS menu-bar app that builds a whole-disk treemap and surfaces the largest items across every directory — including ~/Library, /Library, and developer tool directories — in a single view. Its Visualize tab lets you drill into any folder visually, and its AI-powered Is this safe to delete? feature explains what a folder does and rates its removal risk before you commit. If you find a suspicious folder buried deep in ~/Library/Application Support and you are not sure whether deleting it will break something, that check alone can save you a lot of pain.
For a one-time deep audit — or if you keep hitting the same space problem month after month — download Crumb and let the treemap show you exactly where your gigabytes are going.
Putting It All Together: A Practical Workflow
- Start with System Settings > Storage for a quick overview and to delete obvious large files (old backups, downloads).
- Create a Finder Smart Folder filtered to files larger than 500 MB across "This Mac" — sort by size and review each item.
- Run the Terminal
ducommands against~/Library/Cachesand~/Library/Application Supportto spot bloated app data. - Check Xcode artifacts if you develop for Apple platforms — DerivedData and simulator runtimes are often the single largest items on a developer's Mac.
- Empty the Trash after moving items there — files in the Trash still consume disk space.
- Run a treemap scan to catch anything the manual steps missed, especially in hidden library directories.
Conclusion
Finding large files on a Mac does not require third-party tools if you know where to look. Apple's Storage panel handles the obvious stuff, Finder smart folders give you a live filtered view, and Terminal commands reach every corner of the drive. The key discipline is verifying before you delete — especially in Library directories where apps store essential data alongside disposable caches. Work through the methods in order, keep an eye on the locations listed above, and you will reclaim meaningful space without risking stability.