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 .jar files (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)

  1. Press Windows + R to open the Run dialog
  2. Type %appdata%.minecraft and press Enter
  3. 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

  1. Open File Explorer
  2. Click the address bar and type %appdata%
  3. Look for the .minecraft folder 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

  1. Open Finder
  2. Hold the Option key and click Go in the menu bar
  3. Select Library (it only appears when Option is held)
  4. 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 ~/.minecraft to 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:

VariableHow 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 instancesEach instance in a launcher like Prism has its own isolated folder
Symlinks or custom install pathsAdvanced users who redirected AppData to another drive will have a different physical path
Flatpak on LinuxAdds a Flatpak-specific path prefix, not the standard ~/.minecraft
Portable installsSome 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:

  1. Open the Minecraft Launcher
  2. Click on Installations at the top
  3. Hover over the installation you want
  4. 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 files
  • options.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.