How to Find Game Files and Saves for Windows Games on Lutris

-
Lutris game files location

Lutris makes playing Windows games on Linux incredibly smooth, but when you need to tweak a config file, back up a save, or mod a game, the nature of Wine prefixes can make locating those files a bit confusing. Every game installs and stores data in its own isolated environment, so knowing where to look is essential. This guide covers exactly how to find game files, saves, and settings for any Windows title running through Lutris.

Understanding Lutris Wine Prefixes

At the heart of how Lutris runs Windows games is the Wine prefix. Essentially, a prefix is a contained mini Windows filesystem where your game is installed and stores all its data. Lutris creates these prefixes automatically, keeping each game separate to avoid conflicts.

What is a Wine Prefix?

A Wine prefix is a directory that mimics a Windows installation (usually a C: drive) and contains the game files, registry, and any saved data the game generates. By default, Lutris places each prefix in its own folder, making management straightforward once you know where they live.

Default Prefix Location

Unless you have changed the settings, Lutris stores all prefixes in the ~/Games/ directory. Under this folder, you will find a subfolder named after the game, and inside that, the prefix itself. The exact path is typically:

~/Games/my-game-name/

Within this folder, the drive_c directory is the root of the virtual C: drive, exactly as Windows sees it.

Custom Prefixes

If you use a custom install location or a prefix shared between multiple games, the path may differ. To check where a specific game’s prefix is located, open Lutris, right-click the game, select Configure, go to the Game options tab, and look at the Wine prefix field. This shows the absolute path.

Accessing the Virtual C Drive

Once you know the prefix path, you can explore the virtual Windows environment just like any other directory on Linux. There are a few convenient methods to do this.

Browsing with Lutris UI

Lutris offers a quick way to open the prefix in your file manager. Right-click the game, choose Browse files (or Open directory), and a window will open at the game’s prefix folder. From there, double-click drive_c to see the familiar Windows folder structure.

Navigating via File Manager

Simply open your system’s file manager and navigate to ~/Games/game-name/drive_c/. Inside, you will see standard Windows folders like Program Files, Program Files (x86), users, and windows. Most game data resides under the user profile, typically drive_c/users/steamuser/ (or the username you configured).

Common Game File Locations

Different games store data in various places, but they follow Windows conventions. Here are the most frequent spots you will need to check.

Save Files

Save locations vary by game and storefront, but typical paths within the prefix’s drive_c include:

  • users/steamuser/Documents/My Games/[Game Name]/
  • users/steamuser/AppData/Local/[Game Name]/
  • users/steamuser/AppData/Roaming/[Game Name]/
  • users/steamuser/Saved Games/

For Steam games, the cloud save location is often inside Program Files (x86)/Steam/userdata/. If you cannot find saves, check the game’s PCGamingWiki page for exact paths.

Configuration Files

Settings such as graphics, controls, and audio are frequently stored in:

  • users/steamuser/AppData/Local/
  • users/steamuser/AppData/Roaming/
  • The game’s installation folder itself (e.g., Program Files/Game/cfg/).

Look for .ini, .cfg, or .xml files. Editing these can help fix issues or push performance beyond the in-game options.

Log Files

When troubleshooting crashes or errors, log files can be invaluable. These are often placed in:

  • The game’s main directory (e.g., Program Files/Game/logs/)
  • users/steamuser/AppData/Local/[Game]/

If a game is run through a script, Lutris may also generate a log that you can access by right-clicking the game and selecting Show logs.

Tips for Managing Game Files

Keeping your game files organised makes backing up and modding much simpler. Consider these best practices:

  • Bookmark the prefix in your file manager for quick access to frequently modded games.
  • Use symbolic links if you want to store saves or configs in a cloud‑synced folder outside the prefix.
  • Back up the entire prefix before making drastic changes, especially when experimenting with mods or Wine versions.
  • Check the Lutris database for game-specific tips on where to find files; community scripts often include notes about data locations.

Frequently Asked Questions

How do I find where my game saves are stored in Lutris?

First, locate the game’s Wine prefix by right-clicking the game in Lutris and selecting “Browse files.” Then navigate to drive_c/users/steamuser/Documents or AppData folders and look for the game’s save folder. If still unsure, search PCGamingWiki for the specific game’s save path.

Can I move my game prefix to another drive?

Yes. Move the entire game folder (e.g., ~/Games/game-name) to the desired location. Then in Lutris, right-click the game, go to Configure > Game options, and update the Wine prefix path to the new location. Make sure the game is not running when you do this.

Why can’t I see the AppData folder?

By default, file managers may hide folders starting with a dot (like .wine), but AppData is not hidden inside the prefix, it is simply a regular Windows hidden folder. If you cannot see it, press Ctrl+H to show hidden files, or navigate directly to drive_c/users/steamuser/AppData.

Are save files tied to a specific Wine prefix?

Yes. Each game’s prefix is isolated, so saves live inside that specific drive_c filesystem. If you delete or recreate the prefix without backing up, you will lose your saves. Always back up the entire prefix or at least the save folder before making major changes.

Can I share saves between different Linux installations?

Absolutely. Copy the save folder from the prefix to a portable drive or cloud storage, then paste it into the corresponding path on the other Linux installation. As long as the game and prefix structure are identical, saves will work seamlessly.

Leave A Reply