How to Recover a Deleted Minecraft World
Do not panic (but do act fast)
Your Minecraft world is gone. Take a breath. Then start moving, because the sooner you act, the better your odds of getting it back.
If your server is still running, stop it immediately. Minecraft writes to the world folder constantly. Every second the server runs after data loss, it might overwrite the remnants of your old world with new (empty) data. Shut it down first, investigate second.
Now let us walk through your options, starting with the most likely to work.
Check if your host has backups
Before you try anything complicated, check the obvious places.
Pterodactyl / Pelican panel: Log into your server panel and check the Backups tab. If you (or someone on your team) triggered a manual backup recently, it might still be there. If your host configured automatic snapshots, you could have a recent one sitting in the panel right now.
Your hosting provider's support: Many game server hosts keep node-level snapshots for disaster recovery, even if they do not expose them in the panel. Open a support ticket and explain what happened. Be specific: "My world folder was deleted/corrupted at approximately [time]. Do you have any snapshots from before that?" Some hosts will restore from their internal backups for free. Others charge a fee. Some do not keep them at all. But it costs nothing to ask.
Your hosting provider's backup storage: If your host configured S3 storage for Pterodactyl backups, your archives might be in a cloud bucket even if the panel does not show them. This depends entirely on how your host set things up. Our post on cloud storage options for Pterodactyl backups explains how this works under the hood.
Restore from a manual backup
If you previously downloaded your world files via SFTP (good for you), here is how to restore them:
- Stop the server if it is still running.
- Connect via SFTP using FileZilla, WinSCP, or your preferred client.
- Delete the corrupted world folder (or rename it to
world_broken/if you want to keep it as a reference). - Upload your backup. Put the
/world/directory back in the server root. If you are running Paper/Spigot, also uploadworld_nether/andworld_the_end/if you have them. - Check permissions. The uploaded files should have the same ownership as the rest of the server directory. On most Pterodactyl setups, this is handled automatically.
- Start the server. Log in and verify your world loaded correctly. Check coordinates of known builds to make sure it is the right save.
If your backup is old, you will lose everything built between the backup date and now. That is the cost of infrequent backups. More on preventing this later.
Recover from a Pink Narwhal backup
If you had Pink Narwhal running backups before the incident, recovery is straightforward:
- Open your dashboard and find the server.
- Browse your backups. They are listed by date and time. Pick the most recent one from before the data loss.
- Selective restore. You do not need to restore everything. Browse the backup contents, find the
world/folder (andworld_nether/,world_the_end/if applicable), and restore just those. Your plugins, configs, and other files stay untouched. - Restart the server and verify.
The selective restore is the key feature here. With most backup systems, restoring means replacing your entire server directory. With Pink Narwhal, you can pull out exactly the files you need. Lost your world but your plugins are fine? Restore just the world. Corrupted one config file? Grab that one file from last night's backup.
Check the recycle bin (singleplayer worlds)
If this is a singleplayer world (not a server), your saves are stored locally:
- Windows:
%appdata%\.minecraft\saves\ - macOS:
~/Library/Application Support/minecraft/saves/ - Linux:
~/.minecraft/saves/
If you deleted the world folder, check your operating system's recycle bin or trash. On Windows, look in the Recycle Bin. On macOS, check Trash. If the files are there, restore them back to the saves directory and you are done.
Minecraft itself has no built-in undo or world recovery feature. If the files are not in the trash, they are gone from Minecraft's perspective.
File recovery tools (last resort)
If the world files were deleted from a local disk (not a remote server) and they are not in the recycle bin, file recovery software is your last option.
- Recuva (Windows, free): Scans your disk for recently deleted files. Works best on HDDs. SSDs with TRIM enabled (which is most modern SSDs) overwrite deleted data almost immediately, making recovery unlikely.
- TestDisk / PhotoRec (Windows/Mac/Linux, free): Lower-level recovery that scans for file signatures. Can sometimes find data that Recuva misses.
The success rate here is low, especially on SSDs and especially if time has passed since the deletion. For remote hosted servers, these tools do not apply at all since you do not have physical access to the disk.
Verdict: Worth trying if you have no other options. Do not get your hopes up.
How to prevent this from happening again
You are reading this because something went wrong. Here is how to make sure you never need to read it again.
The 3-2-1 backup rule, Minecraft edition:
- 3 copies of your world (the live server, a recent backup, and an older backup)
- 2 different storage types (the server disk and cloud storage)
- 1 offsite copy (somewhere that is not the same machine or data center as your server)
Most Minecraft server operators have exactly 1 copy on 1 disk in 1 location. That is why you are here.
The easiest fix: Set up automated backups that run on a schedule and store copies offsite. You can do this manually with scripts and cron jobs (see our complete Minecraft backup guide for every method), or use a service like Pink Narwhal that handles scheduling, storage, and game-aware file selection automatically.
If your Minecraft server runs on Pterodactyl, our guide on setting up automated backups walks through the specifics. The knowledge base also has step-by-step setup instructions.
The best time to set up backups was before you lost your world. The second best time is right now.