The Disconnected Backup Dilemma
Apple’s Time Machine is arguably the most user-friendly backup system included in any operating system. You plug in an external hard drive, click “Use as Backup Disk,” and macOS silently handles the rest. But a common scenario causes panic among Mac users: what happens when you accidentally delete a crucial file while you are sitting in a coffee shop, miles away from the external hard drive sitting on your desk at home?
Many users assume that because the backup drive is disconnected, the file is lost forever. Fortunately, this is incorrect. Thanks to the underlying architecture of the Apple File System (APFS), your Mac is secretly keeping temporary backups directly on its internal storage, even when your main backup drive is nowhere to be found. These are called Time Machine Local Snapshots.
What Are Local Snapshots?
When you enable Time Machine, macOS does not just copy files to your external drive. It also begins taking “snapshots” of your internal SSD roughly once an hour. A snapshot is not a duplicate copy of your entire hard drive—that would consume all your storage instantly. Instead, it is a lightweight record of the exact state of your files at that specific moment in time.
If you delete a file, macOS does not actually erase the data from the SSD immediately. It simply hides it from you, preserving it within the snapshot in case you need it back. macOS keeps these hourly snapshots for 24 hours, and keeps the last successful snapshot until space is needed.
Crucially, you do not have to manage snapshot storage space. macOS handles this automatically. If you download a massive video file and your Mac needs the storage space, it will automatically delete the oldest local snapshots in the background to make room. You will never receive a “Disk Full” error because of local snapshots.
How to Recover a File Using Local Snapshots
Recovering a file from a local snapshot uses the exact same interface as recovering from an external Time Machine drive.
- Open a Finder window and navigate to the folder where the deleted file used to live (e.g., your Documents folder).
- Click the Time Machine icon in the top menu bar (it looks like a clock with an arrow around it) and select Enter Time Machine.
- Note: If you do not see the Time Machine icon in the menu bar, open System Settings > Control Centre, scroll down to Time Machine, and select “Show in Menu Bar”.
- The screen will transform into the Time Machine interface, showing your current Finder window layered over previous versions of that same window, stretching back into the past.
- On the right side of the screen, you will see a timeline. You will notice that some tick marks are bright white, while others might be dim or greyed out. The bright white ticks represent Local Snapshots available right now on your internal drive.
- Use the arrows next to the Finder window, or click a white tick mark on the timeline, to travel back in time to an hour before you deleted the file.
- The deleted file should reappear in the Finder window. Select it, and click the Restore button at the bottom of the screen.
macOS will instantly pull the file out of the hidden snapshot and place it back into your live folder.
Managing Snapshots via Terminal (For Advanced Users)
While macOS manages snapshots automatically, power users might occasionally want to manually create or delete snapshots. This is done using the Terminal application and the tmutil (Time Machine Utility) command.
Manually Creating a Snapshot
If you are about to install a major software update or run a risky script, you can force macOS to take an immediate snapshot so you have a guaranteed rollback point:
tmutil localsnapshot
The terminal will respond with a confirmation that a snapshot was created, including a timestamp.
Listing Available Snapshots
To see exactly how many snapshots are currently stored on your internal drive, use this command:
tmutil listlocalsnapshots /
This will list all snapshots by their date and time.
Conclusion
Time Machine Local Snapshots provide an incredible, invisible safety net for MacBook users on the go. As long as Time Machine is enabled on your Mac, you have a 24-hour window to recover accidentally deleted files or undo destructive edits, even if your backup drive is hundreds of miles away.