Free up storage
How to Find Files Over 1GB on Your Mac
Track down every file larger than 1GB on your Mac using Finder, Smart Folders, Terminal, and faster shortcuts. Reclaim 20+ gigs in under ten minutes.
Your 512GB MacBook Air is at 487GB used and you have no idea where the space went. The dock claims your apps are tiny. The Downloads folder looks normal. But somewhere on the disk, dozens of files over a gigabyte each are sitting in places you’d never think to check — Final Cut renders, old podcast exports, a random Docker disk image, that 14GB Photos library backup you forgot about in 2023.
Finding files over 1GB is the single highest-leverage move when your SSD is full. A handful of these usually accounts for half your “missing” storage. Here’s every reliable way to surface them on macOS Sonoma and Sequoia.
The fastest method: a Finder Smart Folder
Smart Folders are saved searches that update live. Once you build one for files over 1GB, you can open it any time storage gets tight.
- In Finder, press
Cmd+Nfor a new window, then chooseFile → New Smart Folder. - In the search bar, click “This Mac” so it searches everywhere — not just the current folder.
- Click the
+button on the right side of the search bar to add criteria. - Change the first dropdown from “Kind” to “File Size”.
- Set the next dropdown to “is greater than” and type
1with the unit set to GB. - Hit Save in the top-right, name it “Files over 1GB,” and check “Add To Sidebar.”
Now you have a permanent shortcut. Sort by Size to see the worst offenders first.
Spotlight’s hidden Advanced search
Most people use Spotlight only for the menu bar search. The real power is in Finder.
Open any Finder window and press Cmd+F. You’ll see the same search bar as Smart Folders. Click +, then click the leftmost dropdown — by default it shows “Kind.” Hold Option while clicking and you’ll see a hidden menu item called “Other…” That opens the full attribute list, which has hundreds of metadata fields most people never touch.
Search for “size” and pick “File size.” This is the same kMDItemFSSize raw attribute Spotlight uses internally. You can stack criteria too — files over 1GB that are also older than six months, or over 1GB and not opened in a year.
Using Terminal: find and mdfind
If you’re comfortable with the command line, two tools handle this in one line.
The find command walks the filesystem directly. Open Terminal and run:
find ~ -type f -size +1G 2>/dev/null
This searches your home folder for any file over 1GB. The 2>/dev/null swallows permission errors when find hits folders it can’t read. To search the whole disk, use / instead of ~ — but expect it to take a while and trigger plenty of permissions warnings.
For a sortable, readable list:
find ~ -type f -size +1G -exec du -h {} + 2>/dev/null | sort -hr
mdfind is faster because it queries Spotlight’s index instead of walking files:
mdfind 'kMDItemFSSize > 1073741824'
That number is 1GB in bytes (1024 × 1024 × 1024). For 2GB, double it. Spotlight’s index excludes some system folders, so mdfind won’t find everything find would — but it returns results in under a second.
Finder column view + size sort
Sometimes the easiest method is just sorting by size. In any Finder window, switch to Column View (Cmd+3) or List View (Cmd+2), then enable size sorting.
In List View, click the Size column header. If you don’t see it, right-click any column header and check “Size.” For folders, Finder won’t calculate sizes by default — go to View → Show View Options (Cmd+J) and tick “Calculate all sizes.” Be warned: on a packed drive, this can hang Finder for a few minutes while it tallies everything.
Column View has its own trick. Select any folder and press Cmd+I to open the Get Info window. The combined size of everything inside appears at the top.
The usual suspects: where 1GB+ files hide
After cleaning hundreds of Macs, the same folders show up again and again. Check these first:
~/Movies — Final Cut Pro libraries can hit 100GB. iMovie projects often pass 5GB each. QuickTime screen recordings save here by default and one 30-minute capture can exceed 2GB.
~/Downloads — Old DMGs, Zoom installers, .pkg files, video downloads. Most are duplicates of apps you’ve already installed.
~/Library/Containers — App-specific data. Slack alone routinely holds 3-8GB of cached message history. Microsoft Teams is similar.
~/Library/Application Support/MobileSync/Backup — iPhone and iPad backups. A single full backup of a 256GB iPhone can hit 80GB.
~/Library/Developer — Xcode device support files, simulators, and DerivedData. Easily 50-100GB on any developer’s Mac.
Docker.raw — At ~/Library/Containers/com.docker.docker/Data/vms/0/data/. This file grows with use and rarely shrinks. 60GB is normal.
~/Music/Music/Media.localized — Your iTunes/Music library. Lossless tracks add up fast.
Photos Library — At ~/Pictures/Photos Library.photoslibrary. Right-click → Show Package Contents to see what’s inside, but don’t move anything around in there.
What’s safe to delete and what isn’t
Once you have your list, the deletion choices matter more than the finding.
Generally safe to delete:
- Old DMG and PKG installers in Downloads
- Video files you’ve already uploaded somewhere
- Old Zoom recordings
- Xcode Archives older than apps you still ship
- DerivedData folder (Xcode rebuilds it)
- Old Time Machine local snapshots
Think twice before deleting:
- Final Cut and iMovie libraries (might still be in active projects)
- iPhone backups (only delete if you have a current one)
- Docker.raw (deleting kills all containers and images)
- Anything in
~/Library/Containersdirectly — better to use the app’s own clear-cache feature
Don’t touch:
- Anything in
/Systemor/Libraryyou don’t recognize - Photos Library internals (use Photos.app to manage)
- macOS install media (the OS uses it for recovery)
Why APFS makes this confusing
You’ll sometimes see files reported as taking less space than their actual size. APFS uses copy-on-write and clones, so two files that look identical in size on disk might share most of their bytes. du and df can disagree by hundreds of gigabytes for this reason.
Time Machine local snapshots compound this. macOS keeps hourly snapshots of your drive locally for up to 24 hours, even when no external Time Machine drive is connected. These snapshots show as “Purgeable” in Disk Utility — Apple decides when to release them based on your iCloud Drive offload settings and free space pressure. To see your current snapshots, run tmutil listlocalsnapshots / in Terminal.
Building a regular cleanup habit
Finding files once is fine. Finding them every quarter is what actually keeps a Mac fast. Set a reminder for the first weekend of each season and run through your Smart Folder. Most Macs accumulate 20-40GB of new garbage every three months.
The faster path is to skip the manual hunt entirely. A good cleaning tool catalogs everything over a threshold, groups it by type, and shows you exactly what’s been forgotten. You make the keep/delete calls; the tool handles the searching.
Either way, the goal is the same: stop your SSD from filling up to the point where macOS performance starts collapsing. Once free space drops below 10%, paging slows down, Time Machine throws warnings, and apps start hanging on save. A few large files cleared out keeps everything moving.