Everywhere All articles Download

Finding specific things

Duplicate photos

Updated 2026-07-31 · 4 min read

Photos has had duplicate detection built in since Ventura, and most people have never opened it.

Inside Photos

macOS Ventura and later: a Duplicates album appears in the sidebar when duplicates are detected. It groups them and offers Merge, which keeps the highest quality version and combines the metadata.

If the album is missing, Photos has not finished analysing — it runs when the Mac is idle and plugged in, and can take days on a large library.

Outside Photos

Images scattered through Downloads, Desktop and old project folders are a separate problem. By content:

find ~ -type f \( -iname "*.jpg" -o -iname "*.heic" -o -iname "*.png" \) \
  -exec md5 -r {} \; 2>/dev/null | sort | uniq -d -w 32

Slow, because every file is read, and definitive for the same reason.

Faster, by size first

Files of different sizes cannot be identical. Group by size, then hash only the collisions. On a photo library this cuts the work enormously.

Visually similar is a different problem

Burst shots and re-exports are not byte-identical, so hashing will not group them. That needs perceptual hashing, which is what Photos' own duplicate detection does — and it is the reason to use Photos for library duplicates rather than a checksum.

Before deleting

Check whether the second copy is a backup rather than a duplicate. A photo present both in your library and on an archive drive is the system working correctly, not waste — and being able to see both copies, including the one on an unplugged drive, is what makes that judgement possible.

Common questions

Does Photos delete the original when merging duplicates?

It keeps the highest quality version and merges metadata such as albums, keywords and favourites.

Why does the Duplicates album not appear?

Analysis runs when the Mac is idle and on power. On a large library it can take several days.

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