A photo library fills a PC predictably, and it is fixable by workflow
Originals, previews, catalogs and the duplicate imports nobody notices. A setup that keeps the system drive usable.
Photography fills a PC in a predictable order: originals, then previews, then exports, then the copies that exist because two applications each wanted their own. Only the first is irreplaceable.
Where it goes
| What | Share of the total | Replaceable |
|---|---|---|
| RAW originals | Usually the largest | No |
| Previews and smart previews | Can exceed the originals | Yes, rebuilt |
| Catalog and database | Small | No, it is your edits |
| Exports and web versions | Grows quietly | Yes, re-export |
| Duplicate imports | Pure waste | Yes |
The setup
- Originals on a large drive, organised by date, with a second copy elsewhere.
- Catalog on the system SSD, because it is small and constantly written to.
- Previews sized to your screen rather than 1:1 for everything, discarded after 30 days.
- Exports treated as disposable, removed after delivery.
- One library, not two.
The Windows specific trap
The Pictures folder is a known folder that several things write to by default: the camera import wizard, OneDrive, the Photos app and any phone sync tool. A machine can end up with the same photos in three places without anyone choosing that, which is why OneDrive's local copies matter here more than anywhere else.
Get-ChildItem "$env:USERPROFILE\Pictures" -Directory -Force -EA SilentlyContinue |
ForEach-Object {
$s = (Get-ChildItem $_.FullName -Recurse -Force -File -EA SilentlyContinue | Measure-Object Length -Sum).Sum
[PSCustomObject]@{ GB = [math]::Round($s/1GB,2); Folder = $_.Name }
} | Sort-Object GB -DescendingPreviews are the largest reclaim
1:1 previews are full resolution renders built per photo, and on a large catalog they exceed the originals. Setting the catalog to discard them after a week or a month is the difference between a folder that stabilises and one that only grows, covered in photo editors on Windows.
Culling is the only real answer to originals
Previews rebuild and exports re-export, so the only category that grows without limit is originals. A culling pass at import, deleting the obvious failures before they are ever backed up, compounds over years in a way no cleanup does.
Common questions
Where should a photo catalog live on Windows?
On the system SSD, because it is small and constantly written to. Originals belong on a larger drive with a second copy elsewhere.
Why do I have the same photos several times on Windows?
Because the Pictures folder is written to by the import wizard, OneDrive, the Photos app and phone sync tools. A machine can end up with three copies without anyone choosing that.
What uses the most space in a photo workflow?
RAW originals, followed by previews, which on a large catalog can exceed the originals themselves. Exports and duplicate imports make up most of the rest.
How do I stop a photo library growing forever?
Cull at import, set previews to be discarded after a month, and treat exports as disposable. Originals are the only category that cannot be regenerated.