How to Find the .minecraft Folder on Any Device
If you've ever tried to install mods, back up your worlds, or tweak configuration files, you've probably hit the same wall: where exactly is the .minecraft folder hiding? It's not somewhere obvious, and the path changes depending on your operating system. Here's a clear breakdown of how to find it — and what factors affect exactly where it lives on your machine.
What Is the .minecraft Folder?
The .minecraft directory is the root folder where Minecraft Java Edition stores everything it needs to run and remember your game. This includes:
- Saves — your individual world files
- Mods — custom mod
.jarfiles (when using loaders like Forge or Fabric) - Resource packs and shader packs
- Screenshots
- Options and configuration files
- Logs and crash reports
Without access to this folder, installing mods, migrating worlds, or troubleshooting crashes becomes nearly impossible. Finding it is step one for almost any advanced Minecraft customization.
📁 Important: The .minecraft folder applies to Java Edition only. Bedrock Edition (Windows 10/11 app version) stores data in a completely different location.
How to Find the .minecraft Folder on Windows
Windows is where most Minecraft Java players run into confusion because the folder sits inside AppData, which is hidden by default.
Method 1: Use the Run Dialog (Fastest)
- Press Windows + R to open the Run dialog
- Type
%appdata%.minecraftand press Enter - The .minecraft folder opens directly
This works on virtually every version of Windows because %appdata% is an environment variable that automatically resolves to your correct user path, regardless of what your username or drive letter is.
Method 2: Navigate Manually Through File Explorer
- Open File Explorer
- Click the address bar and type
%appdata% - Look for the
.minecraftfolder in the list
If you don't see it, you may need to enable hidden folders. Go to View → Show → Hidden items in Windows 11, or View → Hidden items checkbox in Windows 10.
The full path typically looks like:
C:Users[YourUsername]AppDataRoaming.minecraft How to Find the .minecraft Folder on macOS
On a Mac, the equivalent folder is tucked inside the Library directory, which is also hidden from normal Finder browsing.
Using Finder's Go Menu
- Open Finder
- Hold the Option key and click Go in the menu bar
- Select Library (it only appears when Option is held)
- Navigate to
Application Support → minecraft
The full path is:
~/Library/Application Support/minecraft Note that on macOS, the folder is named minecraft without the dot, though it functions identically.
Using Terminal
If you're comfortable with the command line, open Terminal and type:
open ~/Library/Application Support/minecraft This opens the folder directly in Finder.
How to Find the .minecraft Folder on Linux
Linux users generally find this the most straightforward, as hidden folders (those starting with a dot) are a standard convention on Unix-based systems.
The default path is:
~/.minecraft To navigate there:
- Open your file manager and enable Show Hidden Files (usually Ctrl+H)
- Or open a terminal and type
cd ~/.minecraftto navigate directly
Some Linux distributions or custom launcher setups may place the folder in a non-default location, especially if Minecraft was installed via a package manager or Flatpak.
Variables That Affect Where Your .minecraft Folder Lives 🗂️
Not every player's setup is identical. Several factors can shift the folder's location from the defaults above:
| Variable | How It Affects the Path |
|---|---|
| Custom launcher (e.g., MultiMC, Prism Launcher, CurseForge) | These launchers create their own instance folders, separate from the default .minecraft location |
| Multiple Minecraft instances | Each instance in a launcher like Prism has its own isolated folder |
| Symlinks or custom install paths | Advanced users who redirected AppData to another drive will have a different physical path |
| Flatpak on Linux | Adds a Flatpak-specific path prefix, not the standard ~/.minecraft |
| Portable installs | Some setups run Minecraft from a USB drive or non-default directory |
If you're using a third-party launcher and can't find your files in the default location, check the launcher's Settings or Instance menu — there's almost always a button that says Open Folder or Open Instance Folder that takes you directly to that instance's data directory.
Locating the Folder Directly from the Minecraft Launcher
The official Minecraft Launcher includes a built-in shortcut:
- Open the Minecraft Launcher
- Click on Installations at the top
- Hover over the installation you want
- Click the folder icon that appears
This method bypasses the need to know any path at all and is especially useful if you've customized where your game data lives.
What You'll Find Once You're Inside
Once you've opened the folder, the structure is fairly consistent across platforms:
/saves— your single-player worlds/mods— mod files go here when using Forge or Fabric/resourcepacks— custom textures and sounds/shaderpacks— shader files (for OptiFine or Iris)/screenshots— in-game screenshots/config— mod and game configuration filesoptions.txt— stores your in-game settings
Which of these subfolders matters most depends entirely on what you're trying to do — whether that's migrating a world, adding a mod, or digging through crash logs to figure out why your game won't launch.
The path to get there is consistent once you know your OS and launcher setup, but the right place to look — and which subfolder is relevant — comes down to your specific configuration.