Storage
Delete Old iPhone Backups Safely
Old iPhone and iPad backups can be among the largest hidden items on a Mac. The folders are intentionally opaque, so size alone cannot tell you which device, date, or restore point a backup belongs to. The safe cleanup method is to identify each set in Finder, verify that another current recovery path exists, then remove only the obsolete sets.
Where the backups live
When you back up an iPhone or iPad to your Mac rather than iCloud, the data goes to:
~/Library/Application Support/MobileSync/Backup
Each backup is a folder with a long identifier for a name, which is why it is meaningless to browse by hand. Check the total, and it is often a shock:
du -sh ~/Library/Application\ Support/MobileSync/Backup 2>/dev/null
On a Mac that has backed up several devices, this folder can become very large. A permission error from Terminal may mean it lacks Full Disk Access, not that no backups exist.
Remove them by name, not by folder
The safe way to delete backups is through the interface that labels them. Connect the iPhone or iPad, select it in Finder's sidebar, open the General tab, and choose Manage Backups. The list shows device names and dates. Control-click a backup to delete it, show it in Finder, or archive it.
Archiving matters before a risky iOS beta, a device migration, or a major app-data change. An archived backup is preserved as a fixed restore point instead of being updated by the next backup. Keep the newest verified backup for each active device and any archived restore point you intentionally need. Age alone is not a deletion rule.
A note on iCloud versus local
If a device now backs up to iCloud, do not assume the cloud copy is current. Check the device's latest successful iCloud Backup date first. Local and iCloud backups also cover different data depending on sync settings, so the existence of one does not automatically make the other redundant.
Encrypted local backups can include saved passwords, Wi-Fi settings, Health data, and Activity data that unencrypted backups omit. Before deleting the last encrypted local backup, confirm that you still know its password and that the replacement backup contains what you expect. Apple cannot recover a forgotten backup password for an old encrypted set.
Under the hood: why a backup is an opaque blob
A device backup is not a browsable copy of your phone. Every backed-up file is stored
under a name that is a hash of its original path and domain, spread across subfolders,
and a SQLite database, Manifest.db, maps those hashes back to real names. That design
keeps the backup complete and internally consistent, but it is why the folder looks
like meaningless hex and why you must never delete individual files inside it: you
would corrupt a set the manifest still references. It is also why the whole thing is
opaque to the Storage bar, which sees a pile of hash-named files with no app attached.
Finder's Manage Backups reads the manifest to show real device names and dates, which
is exactly why it is the safe place to remove a whole backup at once.
Where a disk map helps
A disk map can reveal that MobileSync/Backup is large, but it cannot decide which
restore point is expendable. Mole's Analyze view is useful for discovery; Finder's
Manage Backups remains the right place to identify, archive, and delete backup sets.
A safe order of operations
Measure the backup folder, identify every set in Finder, check the latest iCloud or replacement local backup, and preserve any restore point needed for a migration or beta. Delete whole obsolete sets through Manage Backups, never individual hash-named files. The space is valuable only after the recovery path is proven.