Everywhere All articles Download

Finding specific things

A Downloads folder that stays usable

Updated 2026-07-31 · 3 min read

Downloads is where files go to be forgotten. Three habits keep it usable.

Sort by date added, always

In Finder, View → Sort By → Date Added. Not Date Modified — a file downloaded today may have been modified years ago, and sorting by that buries recent arrivals.

Let macOS remove old files automatically

Finder → Settings → Advanced → Remove items from the Trash after 30 days handles the Trash. For Downloads itself, System Settings → General → Storage → Recommendations offers automatic cleanup of old files.

A Smart Folder for the big ones

File → New Smart Folder, scope Downloads, criterion File Size is greater than 100 MB. Save it to the sidebar. Reviewing it monthly takes a minute and reclaims more space than any cleaning app.

The installers question

find ~/Downloads \( -name "*.dmg" -o -name "*.pkg" \) -mtime +90

Anything over three months old is almost certainly installed or abandoned.

A shell one-liner for a periodic sweep

find ~/Downloads -maxdepth 1 -type f -mtime +180 -exec ls -lh {} \;

Review, then act. Never automate deletion in Downloads — it is exactly where the one irreplaceable file will be.

Common questions

Does macOS delete old downloads automatically?

Only if you enable it in Storage recommendations. The Trash auto-empty setting is separate.

What is the difference between Date Added and Date Modified?

Date Added is when the file arrived in that folder. Date Modified is when its contents last changed, which may be much earlier.

Find any file before you finish typing

Everywhere keeps track of every file on your Mac — including the folders Spotlight hides and drives you have unplugged. Free for a day, then $19 once.

Download for Mac

Related

© 2026 Caretopia Network Private Limited Everywhere for Mac Articles Privacy Support