Renpy Game Save Location [better] Today
: The AppData folder is hidden by default. To see it, you need to enable "Hidden items" in the File Explorer's "View" tab.
If you bought the game on Steam, the save files might still live in %appdata%\RenPy\ , but Steam occasionally syncs them using its own directories. Check the standard AppData path first. renpy game save location
Ren'Py is the standard engine for Visual Novels, and because it is cross-platform, the location of your save files depends heavily on the operating system you are using. Below are the default directories where you can find your save data. : The AppData folder is hidden by default
Ren'Py follows standard hidden directory conventions on Linux: ~/.renpy/ Check the standard AppData path first
Some users have discovered that creating a folder named "Ren'Py Data" in the root of a drive causes Ren'Py games to automatically use that location for saves, making it possible to bundle games with their save data on portable storage.
As a game developer, the config.save_directory variable in your options.rpy file determines exactly where the game saves data. By default, it's set to a unique name like [Project-Name]-[Timestamp] to prevent save collisions between different games. Setting config.save_directory = None will make saves go to a saves folder inside the game directory, but this is generally for published games.