Last active
August 17, 2022 19:59
-
-
Save KrabCode/0266b8f87aa13b4577f8b94a73df593d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| echo off | |
| title noita backup | |
| echo. | |
| set noitaSaveLocation=%AppData%\..\LocalLow\Nolla_Games_Noita\save00 | |
| set /p dirName= New backup folder name: | |
| robocopy "%noitaSaveLocation%" "%dirName%\save00" /s /e | |
| echo Current noita save backed up as: %dirName% | |
| echo. | |
| pause |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment