How can I recover deleted files on Mac when Trash is empty?

I accidentally deleted important files on my Mac, and now the Trash is empty before I had a chance to restore them. I need help figuring out the best way to recover deleted files on Mac, whether through backups, built-in recovery options, or reliable recovery software, because some of these documents and photos are really important.

I messed this up once on my own Mac, so I get the panic. Emptying Trash feels final, but it is not always final. The part where people lose ground is what happens next. They keep using the Mac, apps keep writing data, macOS keeps doing its thing, and the old file blocks get reused. On SSD-based Macs, this gets ugly fast.

If this were my machine, I’d go in this order.

1. Check Time Machine and iCloud first

This is the fast path when it works. No scanning, no guessing.

  1. Open the folder where the missing file used to live.
  2. Enter Time Machine.
  3. Go back to a backup from before you emptied Trash.
  4. Restore the file.
  5. Then sign in to iCloud and check the Recently Deleted area for files or photos.

If you had either of those turned on, you might be done in a few minutes.

2. Check APFS snapshots

A lot of Mac users miss this one. macOS often keeps local APFS snapshots even when Time Machine is not fully set up. I’ve seen people skip backups for months and still find something useful there. Open Disk Utility, pick your APFS Data volume, and see whether snapshots exist from before the deletion. If one does, your missing files might still be sitting inside it.

3. Try recovery software

If there’s no backup and no snapshot, I’d move straight to recovery software. For most people, Disk Drill is the easier option on a Mac. It works with newer macOS versions and Apple Silicon systems, and the workflow is pretty plain:

  1. Install the app.
  2. Choose the drive where the files were stored.
  3. Run a scan.
  4. Preview what it finds.
  5. Recover to a different drive if you have one.

There are free tools like PhotoRec. I used it once, and yeah, it finds stuff, but the output is messy. Filenames are often gone, folder structure is gone, and sorting through the results is a pain.

The thing people don’t expect is TRIM. SSDs use it to wipe deleted data more aggressively than old spinning drives did. So timing matters a lot here. If you keep using the Mac after emptying Trash, your odds drop. Fast.

I’d check Time Machine and iCloud first, then snapshots, then run a scan right away if those come up empty. I’ve seen file recovery work after Trash was emptied, mostly when the person stopped using the Mac immediatly and dealt with recovery first instead of treating the computer like normal.

3 Likes

Stop using the Mac first. That matters more than most recovery steps.

I agree with @mikeappsreviewer on timing, but I’d put one check even before scans. Look in app-level trash and version history. A lot of files are “deleted” inside the app, not gone from the disk right away. Photos has Recently Deleted. Notes does too. Pages, Numbers, and Keynote often keep older versions. Microsoft 365 apps sometimes have AutoRecover copies. Adobe apps often leave temp files in autosave folders. If the file came from one app, open that app before doing anything else.

Next, search hidden temp and autosave locations:
~/Library/Containers
~/Library/Application Support
~/Library/Autosave Information
/tmp

Use Finder, Go to Folder, then paste those paths. I’ve recovered unsaved docs this way more than once. It’s boring, but it works more often than people think.

Also check cloud service web portals, not only local folders. Dropbox has Deleted Files. Google Drive has Trash on the web. OneDrive has its own recycle bin. If your Desktop or Documents were synced, the file might still be there even if Finder shows nothing. People miss this all the time.

If none of that hits, use recovery software. Disk Drill is the usual Mac pick because the preview is decent and the file type sorting saves time. Recover to an external drive, not your Mac’s internal disk. If the missing data is business or legal stuff, stop and go to a pro lab. DIY attempts lower your odds.

One more thing. Terminal history sometimes helps you identify where the file lived:
ls -la
find ~/ -name ‘filename*’

This won’t restore data, but it helps narrow the search. Also worth checking this video guide for Mac file recovery steps: watch this Mac deleted file recovery tutorial

If your Mac has an SSD, the odds drop fast. So move quik, and save recovered files somewhere else.

Big thing I’d add to what @mikeappsreviewer and @boswandelaar already covered: check whether the file was ever attached, exported, or duplicated somewhere else. Sounds dumb, but I’ve seen “deleted” files still sitting in Mail downloads, Messages attachments, AirDrop saves, Downloads, or an app-specific Export folder. Finder search can help if you switch the search scope to “This Mac” and filter by file kind + date modified.

Also, if it was a document, try this in Terminal:

mdfind 'kMDItemFSName == '*filename*''

That uses Spotlight’s index, so sometimes it finds traces even when Finder search acts weird. You can also search by kind:

mdfind 'kMDItemKind == 'PDF''

One place I sorta disagree with the usual advice: don’t go poking around too much on the internal drive if the files really matter. Every extra reboot, login, browser tab, and app launch is more disk activity. If the data is important enough, shut the Mac down and work from another Mac or boot externally.

If DIY is still the route, Disk Drill is probly the most practical Mac choice because previewing results saves a ton of time. But if the files are mission-critical, skip the “let me try five random apps” phase and go pro.

Also, this thread on Mac hard drive file recovery software options is worth skimming. It’s basically a useful discussion about Mac drive recovery with Disk Drill and other tools, without a bunch of marketing fluff.