Hello, I thought it was time to give back to the site, after the site has given me so much.
This is a tool i made to help me save hard-drive space but still keep my save history for each of the VNs i play.
here is what you do:
You make a bat file and you paste this code into it
What this script does is, it goes and deletes every single file and folder except the saves
then you copy that file into where you renpy exe file is. and you run it when youve completed the VN. so you keep your save and persistent file for easy copy when the dev releases a new version in 2989
This is a tool i made to help me save hard-drive space but still keep my save history for each of the VNs i play.
here is what you do:
You make a bat file and you paste this code into it
Code:
@echo off
pushd "%CD%" || exit /B 1
for /D %%D in ("*") do (
if /I not "%%~nxD"=="game" rd /S /Q "%%~D"
)
for %%F in ("*") do (
if /I not "%%~nxF"=="cleanup.bat" del "%%~F"
)
popd
pushd "%CD%\game" || exit /B 1
for /D %%D in ("*") do (
if /I not "%%~nxD"=="saves" rd /S /Q "%%~D"
if /I not "%%~nxD"=="persistent" rd /S /Q "%%~D"
)
for %%F in ("*") do (
del "%%~F"
)
popd
then you copy that file into where you renpy exe file is. and you run it when youve completed the VN. so you keep your save and persistent file for easy copy when the dev releases a new version in 2989