Everywhere All articles Download

Coming from Windows

Searching a Mac full of assets

Updated 2026-07-31 · 5 min read

Design work generates the worst possible filenames and the largest files. Both make search harder in specific ways.

The version problem

logo-final.ai, logo-final-v2.ai, logo-FINAL-approved.ai, logo-final-v2-USE-THIS.ai. Searching logo returns all of them with no useful ranking.

Two things help: sorting by modification date rather than relevance, and searching for the common stem then filtering by date. A search that can express logo dm:<30d in one line answers "the one I was working on recently" directly.

Files inside libraries

Sketch libraries, Figma local caches, Adobe Creative Cloud files and Photos libraries are packages or containers. Their contents are not separate search results, and much of it lives in ~/Library where Spotlight will not look.

Large file management

find ~ -type f -size +500M \( -iname "*.psd" -o -iname "*.ai" -o -iname "*.sketch" \
  -o -iname "*.mov" \) 2>/dev/null -exec du -sh {} \; | sort -hr

Design Macs fill up faster than any other kind. Layered PSDs and video comps are usually the answer.

Fonts

Fonts live in three Library folders plus Adobe's own. Finding which file provides a family is covered in the fonts article; the short version is Font Book → Reveal in Finder.

Archive drives

Finished projects go to an external drive, and then become unfindable the moment it is unplugged. This is the single most common search complaint from people doing client work, and the only real fix is a tool that keeps unmounted volumes in its index.

A practical habit

Date-prefix project folders — 2026-07-client-name — and the sort order does your organising for you. It also makes date-range searches trivial.

Common questions

How do I find files inside a Sketch or Figma library?

They are packages or app containers. Open with Show Package Contents, or search with a tool that indexes inside packages.

Why can I not find files on my archive drive?

Spotlight forgets a volume once it is unmounted. Only a tool that retains unmounted volumes can search it.

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