Organising files
A clean install is easy. The regret is the files you forgot were only in one place.
Documents, Desktop, Pictures, Movies, Music. Copy or confirm they are in a backup.
~/Library data, none of which appears in a casual look:
~/Library/Mail if you use POP or want local archives~/Library/Messages/chat.db for your iMessage history~/Library/StickiesDatabaseApp data:
~/Library/Preferences~/Library/FontsCredentials and keys:
~/Library/Keychains (or ensure iCloud Keychain has it)~/.ssh~/.zshrc, ~/.configCatch anything touched but not filed:
find ~ -type f -mtime -90 -not -path "*/Library/Caches/*" 2>/dev/null | \
grep -vE "Library/(Application Support|Containers)" | less
The whole point: everything important is either synced to iCloud or in a backup you have opened and verified. A search for recently-touched files outside your obvious folders is the step that catches the one you would otherwise lose.
~/Library data — Mail, Messages history, Notes, Voice Memos — plus SSH keys, dotfiles and keychains. All hidden from a casual look.
Back up, then verify the backup restores real files. Search for recently-modified files outside your obvious folders to catch strays.
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