The Downloads folder is the one place on a Mac that nobody intends to neglect — yet it quietly fills with installer packages, PDF receipts, duplicate images, and ZIP archives that never got deleted. If you have ever needed to clean up your Downloads folder on a Mac, this guide walks through exactly how to do it safely, what you can delete without worry, and how to stop the mess from coming back.
Why the Downloads Folder Gets So Large
macOS deposits everything you fetch from a browser, email attachment, or AirDrop into ~/Downloads by default. Unlike the Trash, nothing automatically removes items from it. Over months and years, a few common categories dominate the bloat:
- .pkg and .dmg installer files — once an app is installed, these serve no purpose but they are often several hundred megabytes each.
- ZIP and .tar.gz archives — usually already expanded; the archive itself is redundant.
- Duplicate downloads — browsers append
(1),(2)suffixes when the same file is downloaded twice. - Old document versions — contracts, invoices, and slides that have since been superseded.
- Media files — videos and large images downloaded once and forgotten.
None of this is dangerous to delete. The files are copies; the originals live on a server somewhere. The only exception worth noting is if you have not yet acted on a file — read that PDF, imported that photo, installed that app — so a quick review before bulk-deleting is worthwhile.
How to Clean Up Downloads Folder on Mac Manually
Step 1: Sort by Date Added
- Open Finder and navigate to
~/Downloads(or press Cmd+Shift+L in the Finder sidebar). - Switch to List view (Cmd+2).
- Click the Date Added column header to sort oldest-first. If the column is not visible, right-click any column header and enable it.
- Everything from more than a year ago is a strong candidate for deletion — select it, review briefly, then drag to Trash.
Step 2: Remove Installer Packages and Archives
Use Finder's built-in search to isolate file types at once:
- In the Downloads folder, press Cmd+F to open the search bar.
- Click the first pop-up (labelled "Kind") and choose Other, then type "Disk Image" or "Package" to filter
.dmgand.pkgfiles. - Select all results (Cmd+A), verify nothing critical is selected, and move to Trash.
- Repeat for
.ziparchives: in the search bar, change the filter to "Extension" and typezip.
This is safe as long as the corresponding apps are already installed and working. You can always re-download an installer if you ever need it.
Step 3: Sort by Size to Find Large Files
In List view, click the Size column to bring the biggest items to the top. Video files and uncompressed archives often account for several gigabytes each. Delete anything you no longer need.
Step 4: Use Terminal for a Quick Size Audit
To see how much space your Downloads folder is actually consuming, open Terminal (/Applications/Utilities/Terminal.app) and run:
du -sh ~/Downloads
To list all items sorted by size (largest first):
du -sh ~/Downloads/* | sort -rh | head -20
This gives you the top 20 items by disk usage — useful for spotting unexpectedly large subdirectories.
Finding and Removing Duplicate Downloads
Browser duplicates — files ending in (1).pdf, (2).jpg — are easy to spot manually, but byte-identical duplicates with different names are harder. You can use Terminal to list files with numeric suffixes:
ls ~/Downloads | grep -E '\([0-9]+\)\.'
For a thorough deduplification, Crumb's Duplicates scanner works across the entire Downloads folder: it groups files by content hash (not just name), shows you which copy to keep, and removes the rest in one pass. That is particularly useful when the same PDF has been downloaded under three different names over the years.
Organizing What Remains
After deleting obvious junk, the remaining files deserve some structure so they are easy to find and do not pile up again. A simple scheme that works for most people:
~/Downloads/_archive/— anything you want to keep but rarely access~/Downloads/installers/— any.pkgor.dmgyou intentionally want to keep (e.g., offline backups of specific app versions)~/Downloads/inbox/— items currently being worked on; empty this weekly
Crumb's Organize feature can apply folder rules automatically — for example, routing all .dmg files into a specific subfolder on a schedule — which keeps the top level of Downloads from becoming a pile again.
Keeping Downloads Clean Going Forward
Change the Default Download Location
Browsers let you set a different default folder or prompt you each time. In Safari: Safari → Settings → General → File download location. In Chrome: Chrome → Settings → Downloads. Routing downloads to a folder like ~/Downloads/inbox creates a natural staging area rather than one ever-growing heap.
Enable Quarterly Reviews
Schedule a calendar reminder every three months to run the size audit above and delete anything older than 90 days. Many people find a quarterly sweep takes less than five minutes once the initial cleanup is done.
What You Should Not Auto-Delete
Blanket "delete everything older than X days" rules are appealing but carry real risk:
- Tax documents and contracts — these belong in a proper folder, not Downloads, but if you have not moved them yet they can be destroyed by an aggressive automation.
- Software license keys saved as text files — often downloaded once and never backed up elsewhere.
- Partially downloaded files — any
.crdownloador.downloadpartial file should be reviewed, not blindly deleted.
Any cleanup that runs automatically and deletes files permanently (including Trash-and-empty sequences) requires care. Cleaning is not reversible once the Trash is emptied.
Downloads vs. Other Mac Junk: A Quick Comparison
| Location | Typical Size | Safe to Delete? | Method |
|---|---|---|---|
~/Downloads |
1 – 50+ GB | Usually yes, after review | Manual sort + dedup tool |
~/Library/Caches |
500 MB – 5 GB | Yes (rebuilt automatically) | Disk cleaner |
/Library/Logs |
100 MB – 2 GB | Yes | Disk cleaner |
~/Movies / ~/Music |
Varies widely | Only if you no longer need the content | Manual review |
| App leftovers (after uninstall) | 50 MB – 2 GB per app | Yes | Uninstaller with leftover detection |
Putting It All Together
A one-time cleanup of ~/Downloads — sorting by date, removing installer files, and deduplicating — can recover several gigabytes on most Macs with minimal effort. The harder part is maintenance: building a habit of quarterly reviews and routing new downloads into a defined inbox folder stops the pile from rebuilding. If you want to automate the deduplication and folder-organization steps, download Crumb and point its Duplicates and Organize tools at your Downloads folder — it handles the tedious parts without touching anything you have not explicitly marked for removal.