How to Find AppData on Windows: A Complete Guide
The AppData folder is one of Windows' most useful — and most hidden — directories. It stores configuration files, saved settings, cached data, and local application data for nearly every program installed on your system. Knowing how to find it can help you troubleshoot software issues, back up settings, or clean up storage.
What Is the AppData Folder?
AppData is a hidden system folder located within your Windows user profile. Its full path looks like this:
C:UsersYourUsernameAppData Windows hides it by default to prevent accidental deletion of files that applications depend on. Inside AppData, there are three subfolders, each serving a distinct purpose:
| Subfolder | Full Path | What It Stores |
|---|---|---|
| Local | AppDataLocal | Large app data stored only on this device |
| LocalLow | AppDataLocalLow | Data for low-integrity processes (e.g., browsers in protected mode) |
| Roaming | AppDataRoaming | Settings that sync across devices on a domain network |
The Roaming folder is particularly important in workplace environments. When a user logs into different computers on the same network domain, Windows can sync these files automatically. Local stores things like browser caches and game saves that are too large or device-specific to sync.
Method 1: Use the Run Dialog (Fastest) ⚡
The quickest way to reach AppData is through the Run command:
- Press Windows key + R to open the Run dialog
- Type
%appdata%and press Enter
This opens the Roaming subfolder directly. If you need the Local or LocalLow folders, navigate one level up using the address bar, then select the subfolder you need.
You can also type the full path directly:
%localappdata%— opens AppDataLocal%appdata%— opens AppDataRoaming
Method 2: Show Hidden Files in File Explorer
If you prefer browsing manually through File Explorer:
- Open File Explorer
- Click the View tab (Windows 10) or the View menu at the top
- Check Hidden items (Windows 10) or toggle Show → Hidden items (Windows 11)
- Navigate to
C:UsersYourUsername - The AppData folder will now be visible
🗂️ This method is useful when you want to see AppData in the context of your full user profile folder, alongside Documents, Downloads, and Desktop.
Method 3: Type the Path Directly in File Explorer
You can bypass the hidden folder restriction entirely using the address bar:
- Open File Explorer
- Click the address bar at the top
- Type
C:UsersYourUsernameAppData(replace YourUsername with your actual Windows account name) - Press Enter
Alternatively, type %appdata% directly into the File Explorer address bar — Windows will resolve the environment variable automatically.
Method 4: Search via Windows Search
Windows Search won't surface AppData directly by default, but you can:
- Click the Search bar on the taskbar
- Type
%appdata% - Press Enter or select the folder result
This behaves the same as the Run dialog method and drops you into the Roaming subfolder.
Why You Might Need AppData
Understanding why you're accessing AppData shapes which subfolder matters:
- Backing up game saves — Many games store save files in
AppDataLocalorAppDataRoaming - Troubleshooting a broken app — Deleting or renaming an app's folder in AppData forces it to regenerate default settings
- Moving settings to a new PC — Copying an app's Roaming folder to a new machine can restore configurations
- Freeing up disk space — AppDataLocal can accumulate substantial cached data over time
- Minecraft and similar games — The
.minecraftfolder lives inAppDataRoamingby default
AppData Location Varies by Windows Version and Setup
While the path C:UsersYourUsernameAppData is standard, a few variables can shift this:
- Custom Windows installations — If Windows was installed on a drive other than C:, the path changes accordingly (e.g.,
D:Users...) - Redirected folders in enterprise environments — IT administrators can redirect AppDataRoaming to a network location, meaning the physical folder may not be on your local machine at all
- Multiple user accounts — Each user account has its own AppData folder; you can only access another user's AppData with administrator privileges
- Windows Server environments — Roaming profiles behave differently and the folder structure may be managed centrally
Common Mistakes When Working With AppData
Deleting the wrong folder is the most frequent issue. Removing an entire application's AppData folder will wipe its settings, saved data, and licenses. If you're troubleshooting, rename the folder rather than delete it — the app will create a fresh one, and you can restore the original if needed.
Confusing Local and Roaming matters when backing up or migrating data. Game saves are almost always in Local; productivity app settings tend to live in Roaming.
Assuming paths are identical across accounts is another pitfall. The %appdata% variable always resolves to the currently logged-in user's folder. If you're working with multiple accounts or running a script, hardcoding the path with the correct username is essential.
The folder structure itself is consistent across modern Windows versions, but what specific applications store there — and how much space they consume over time — varies considerably depending on what's installed, how long the system has been in use, and how individual applications are configured.