Organising files
Archiving fails in one of two ways: the files never leave, or they leave and are never found again.
Finished, not merely old. The test: would resuming this need anything beyond the files themselves? Export/bounce final deliverables first (video, audio, PDFs) — project files without their app or assets are not an archive.
find ~/Documents/Projects -maxdepth 1 -type d -mtime +365
lists candidates untouched in a year.
find ~/Documents/Projects/Acme -type f | wc -l
find /Volumes/Archive/Projects/Acme -type f | wc -l
An archive drive that only ever meets Macs should be APFS — indexable, supports all metadata, snapshots. exFAT only if Windows must read it, accepting search degradation.
The moment the drive unmounts, Spotlight forgets it existed. Options, in ascending order of convenience:
find /Volumes/Archive -type f > ~/Documents/archive-2026.txt— grep it later
drive's name, plug in only when you actually need the file. This is what Everywhere does, and archives are the case it exists for
An archive that exists once is a single point of failure sitting in a drawer. Anything irreplaceable gets a second copy on a second drive, stored somewhere else.
APFS for Mac-only archives — proper indexing and metadata. exFAT only when Windows compatibility is required.
Keep listings per drive, or use a search tool that keeps unmounted volumes in its index and labels results with the drive name.
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