Finding the Ren'Py game save location is essential for backing up progress, transferring saves to a new computer, or troubleshooting game errors. Depending on your operating system, the Ren'Py engine stores save data in specific system folders rather than just inside the game’s installation directory. Quick Summary of Save Locations Primary Save Path Windows %APPDATA%/RenPy/ macOS ~/Library/RenPy/ Linux ~/.renpy/ Android
/Android/data/[package.name]/files/saves or Documents/RenPy_Saves/ 1. Windows Save Location
On Windows, Ren'Py typically saves data in the hidden AppData folder. Standard Path: %APPDATA%\RenPy\ How to access: Press the Windows Key + R to open the "Run" dialog. Type %appdata% and hit Enter. Locate the folder named RenPy.
Inside, you will find subfolders named after specific games (e.g., GameName-1234567890) containing your .save files.
Note: Some older games or specific builds may also keep a secondary copy in the game/saves folder within the game's installation directory. 2. macOS Save Location
Mac users will find their Ren'Py saves tucked away in the user library. Standard Path: ~/Library/RenPy/ How to access: Open Finder.
Press Command + Shift + G to open the "Go to Folder" window. Paste ~/Library/RenPy/ and press Enter. 3. Linux Save Location
On Linux, save data is stored in a hidden directory within your home folder. Standard Path: ~/.renpy/ How to access: Open your file manager (like Nautilus or Dolphin). Navigate to your Home directory.
Press Ctrl + H to toggle hidden files. Look for the .renpy folder. 4. Android & Mobile Locations
Finding saves on Android can be more complex due to varying file permissions. Standard Paths: /Android/data/[com.developer.gamename]/files/saves Internal Storage/Documents/RenPy_Saves/
Access: Use a high-level file explorer (like ZArchiver) to navigate to the Android/data folder. Note that newer Android versions (11+) may restrict access to these folders without specific permissions. 5. Steam Save Locations
If you are playing a Ren'Py game through Steam, the engine often utilizes Steam Cloud.
Local Backup Path: Steam usually still saves to the standard OS paths listed above, but it may also store metadata in your Steam installation directory:
C:\Program Files (x86)\Steam\userdata\[YourSteamID]\[AppID]\remote Why are there two save folders?
You might notice a saves folder inside the game directory and another in AppData. Ren'Py often creates a local game/saves folder for convenience, but the system AppData folder is the authoritative location used by the engine to ensure saves aren't lost if you delete or update the game folder. renpy game save location
Need help transferring saves between devices? Just let me know which platforms you're moving between!
Question about save location · Issue #4186 · renpy ... - GitHub
game saves are typically stored in two primary locations depending on the operating system and whether the game was configured to use a "local" or "system-wide" save directory. Windows
On Windows, Ren'Py games usually save data in one of these two places:
AppData (Recommended): Most modern Ren'Py games use the system-wide path to ensure saves aren't lost if you delete the game folder.
%APPDATA%/RenPy/ (usually C:\Users\[Username]\AppData\Roaming\RenPy\)
Local Game Folder: Some games (especially older or portable versions) save directly within their own directory. [Game Folder]/game/saves/ macOS
Mac users can find their save data hidden in the Library folder: ~/Library/RenPy/ ~/Library/Application Support/RenPy/ Linux
Ren'Py follows standard hidden directory conventions on Linux: ~/.renpy/
Alternatively, check ~/.config/renpy/ if the developer has opted for XDG specifications. Android
If you are playing a Ren'Py port on mobile, the path is generally: /Android/data/[package.name]/files/saves/ How to Identify the Specific Folder
Ren'Py creates a unique subfolder for each game based on the config.save_directory defined by the developer. This folder is usually named after the game (e.g., .../RenPy/GameName-123456789/).
Pro Tip: If you can't find the folder, open the game and look at the "About" or "Preferences" screen; some developers include a "Open Save Directory" button. You can also search your computer for a file named persistent, which is the core file Ren'Py uses to track unlocks and progress across all save slots.
Most modern Ren'Py games use a "persistent" storage folder tied to your user profile. This ensures that even if you delete the game folder, your progress remains safe. %AppData%/RenPy/ Finding the Ren'Py game save location is essential
. You will see folders named after the specific games you've played. Open Finder, select "Go to Folder," and enter ~/Library/RenPy/ or sometimes ~/.local/share/RenPy/ 2. The Game Directory (The "Old School" Way)
In some cases—especially with older games, portable versions, or games configured to be "self-contained"—the saves live right inside the game's folder. Navigate to the main folder where the game's or app file is. Look for a folder named game/saves 3. The "Secret" Shortcut
If you can actually launch the game, there is a built-in way to find the folder without digging through your hard drive: Open the game and go to the Preferences Look for a button labeled "Delete Persistent" (don't click it yet!) or a small link that says "Open Save Directory."
Clicking "Open Save Directory" will pop open the exact folder on your desktop. Why do they move? Ren'Py developers use a variable called config.save_directory
. If they leave it blank, the saves stay in the game folder. If they give it a unique name (like GameTitle-12345 ), Ren'Py automatically shoves the saves into the system's
folders to prevent them from being accidentally deleted during updates. Are you trying to transfer saves to a new computer, or are you looking to edit a save file to change your stats?
sat at their desk, staring at the screen of a newly finished visual novel. After hours of choices and dialogue, they had finally reached a critical branching path. Realizing it was time for a break, Alex hit "Save," but a nagging thought remained: Where do these memories actually live? In the world of
, save files aren't always tucked away in the folder where you installed the game. Instead, they often take up residence in hidden corners of your operating system to keep things tidy and prevent data loss during updates.
On Windows, the journey leads to the AppData folder. If you were to follow Alex’s digital footsteps, you would press the Windows Key + R and type %AppData%. There, inside a folder named RenPy, you would find a subdirectory dedicated to every game you’ve ever played. This is where the engine stores persistent data—the choices that shape your story and the save slots that act as your personal time machines.
MacOS users find their saves in a different sanctuary: the ~/Library/RenPy directory. Meanwhile, Linux adventurers look toward the .renpy folder hidden within their home directory. Even on Android, the saves are tucked away in the /Android/data/ path, though they are much harder to reach without specialized tools.
For those looking to manage their data more directly, some developers include a Renpy Game Save Location [new] guide or utility to help identify and manage metadata. This is especially useful when a game spans multiple chapters and you need to ensure your progress carries over seamlessly.
As Alex closed the game, they felt a sense of relief. Knowing that their journey wasn't just a flickering image on a screen, but a set of carefully stored files safe in the depths of their hard drive, made the story feel all the more real. 📂 Save Locations by Platform Windows: %AppData%/RenPy/game_directory_name macOS: ~/Library/RenPy/game_directory_name Linux: ~/.renpy/game_directory_name Android: /Android/data/com.domain.gamename/files/saves 🛠️ Key Files to Watch For
persistent: This file tracks global data, like seen dialogue and unlocked endings. *.save: These are your individual save slots.
log.txt: Useful for developers to see what went wrong if a save fails to load. Where Are Ren'Py Game Saves Located
Ren'Py is one of the most popular engines for Visual Novels. While the engine is consistent, the save file location varies depending on your operating system. Unlike some engines that store saves directly in the game's installation folder, Ren'Py typically stores them in a hidden system folder to ensure user data persists even if the game is uninstalled or updated.
Here is how to find your saves on Windows, macOS, and Linux.
If you have the Ren’Py SDK installed, you can navigate to:
Preferences → Projects Directory → [Your Project] → game/saves
There are two common exceptions where developers change the default save location:
Once you locate the folder, you’ll see several file types:
1-1.save, 1-2.save, etc. – These are your numbered save slots. The number before the dash often represents the page in the load/save menu.persistent (no extension) – Stores global data: unlocked gallery images, completed endings, config options. If you lose this, you may keep individual saves but reset meta-progress.auto.save, auto-1.save – Autosave files.reload.save – Quick reload point.In your options.rpy, you can override the default save location:
define config.save_directory = "MyCustomFolderName"
This will create a folder inside %APPDATA%/RenPy/ (or equivalent) with your chosen name.
⚠️ Avoid using spaces or special characters in the save directory name.
If the paths above feel too technical, here are three easy methods to find your Ren’Py game save location:
In conclusion, understanding the save system and where Ren'Py game saves are located is essential for both game developers and players. For developers, it aids in testing and implementing a robust save system. For players, it provides peace of mind and control over their game progress. As Ren'Py continues to be a popular engine for visual novel creation, understanding its functionalities, including save locations, will remain an important aspect of game development and player engagement.
games typically store save data in two primary locations: a global user directory or within the game's local folder
. The engine defaults to using the system-specific user directory so that saves persist even if you delete or update the game files. Lemma Soft Forums Primary Save Locations by Platform Most Ren'Py games use a unique config.save_directory
string (defined in the game's code) to create a specific subfolder within these standard paths:
Inside your game’s save folder, you’ll typically see:
1-1.save, 2-1.save — numbered save slotspersistent — stores global data like unlocked gallery images, achievements, and settings (this file is not tied to a specific save slot)auto-1.save — autosaves