iPhone backups are quietly filling your Mac
Every phone you have ever plugged in may still have a full backup sitting in your home folder.
Back up an iPhone to your Mac once and the result stays forever. Back up three phones over five years, replace two of them, and you have a folder nobody looks in holding 60 GB.
They count as System Data, which is why they are hard to find and why so many people never do.
Where they live
du -sh ~/Library/Application\ Support/MobileSync/Backup/*
One folder per device, named with a long identifier rather than anything readable. The size is the useful part — expect 5 to 50 GB each depending on the phone and whether photos were included.
If nothing prints, you have none, and this article is not your problem.
Which is which
The folder names are device identifiers, so you cannot tell from Finder which phone is which. The dates help:
ls -lt ~/Library/Application\ Support/MobileSync/Backup/
Sorted newest first. The most recent is almost certainly your current phone.
For proper names, use the interface that knows them. Open Finder, and with a device connected select it in the sidebar, then Manage Backups. You get a list with device names and dates, and a Delete Backup button. In older macOS versions this is in Finder’s settings, or in iTunes.
That dialog is the safest way to do this, because it shows you what you are deleting.
What is safe to remove
Backups for devices you no longer own. Assuming the data made it onto the replacement phone, which it did if you restored from this backup or from iCloud.
Old backups for a device you still have, where a newer one exists. There is little value in last year’s copy of a phone that has been backed up since.
Everything, if you back up to iCloud instead. Check first on the phone: Settings → [your name] → iCloud → iCloud Backup, and look at the date of the last successful backup. If that is recent, the local copies are redundant.
What is not safe
The only backup of a phone you no longer have. If the phone is gone and the data was never restored anywhere, that folder is the last copy. Photos, messages, app data — all of it, only there.
A backup taken deliberately before something risky. Before a repair, before selling a device, before a beta install. That is what it is for.
Check dates before deleting anything. It takes a minute and it is the difference between reclaiming space and losing something irreplaceable.
Moving rather than deleting
If a backup matters but the space does not exist, copy it to an external drive:
cp -R ~/Library/Application\ Support/MobileSync/Backup/<id> /Volumes/YourDrive/
Verify the copy — check the size matches with du -sh on both — then delete the original. Restoring from an external copy means moving it back first, which is inconvenient but not difficult.
Stopping it happening again
The real fix is deciding where backups belong.
iCloud backup happens nightly when the phone is charging and on Wi-Fi, needs no Mac, and costs a subscription if your phone is larger than the free tier. For most people this is the right answer.
Local backups are free, faster to restore, and can be encrypted with more included in them — health data and saved passwords are only in encrypted local backups. Worth keeping if you care about those, in which case keep one current backup per device and delete the rest.
What is not worth doing is what most people end up with by accident: local backups nobody manages, accumulating until a disk fills up.
The check worth doing today
du -sh ~/Library/Application\ Support/MobileSync/Backup/ 2>/dev/null
One number. If it is small, forget about it. If it is 40 GB, you have just found your missing disk space, and the Manage Backups dialog will clear it in under a minute.