The goal of this project is to have an easy to use Noita backup and restore solution. I work mostly in Go, so that's why the language was chosen. The UI was built with GioUI and the command line interface with cobra
%USERPROFILE%\NoitaBackup
noitabackup.exe
in either GUI mode for ease of usenoita.exe
to execute launch
, backup
, and restore
functions backup
%APPDATA%\..\LocalLow\Nolla_Games_Noita\save00
to %USERPROFILE%\NoitaBackup
2024-06-12-17-49-18
(these are your backups)restore
%APPDATA%\..\LocalLow\Nolla_Games_Noita\
:%BASE%\save00.bak
(emergency backup that is rotated on every restore)%BASE%\save00
to %BASE%\save00.bak
%BASE%\save00
The default configuration file is looked for in $HOME/.noitabackup.yaml
and has the same configuration parameters as
the CLI application.
Name | Description | Value |
---|---|---|
auto-launch |
Auto-launch Noita after backup or restore | false |
num-backups |
Total number of backups to keep | 16 |
num-workers |
Total number of Go routines to process copy operations | 4 |
source-path |
Source Noita save game path | %APPDATA%\..\LocalLow\Nolla_Games_Noita\save00 |
destination-path |
Destination main backup path | %USERPROFILE%\NoitaBackups |
steam-path |
Steam executable path | C:\Program Files (x86)\Steam\steam.exe |
---
auto-launch: 'false'
num-backups: 16
num-workers: 4
source-path: C:\\Users\\Demo\\AppData\\LocalLow\\Nolla_Games_Noita\\save00
destination-path: C:\\Users\\Demo\\NoitaBackups
steam-path: C:\\Program Files (x86)\\Steam\\steam.exe
PS C:\> $env:CONFIG_NOITA_DST_PATH = 'C:\Users\demo\backuptest'
PS C:\> .\noitabackup.exe backup
2024/06/12 07:14:16 timestamp: 2024-06-12-07-14-16
2024/06/12 07:14:16 source: C:\Users\demo\AppData\Roaming\..\LocalLow\Nolla_Games_Noita\save00
2024/06/12 07:14:16 destination: C:\Users\demo\backuptest\2024-06-12-07-14-16
2024/06/12 07:14:16 number of backups: 16
2024/06/12 07:14:16 maximum backup threshold reached
2024/06/12 07:14:16 removing backup folder: C:\Users\demo\backuptest\2024-06-11-07-33-30
2024/06/12 07:14:24 timestamp: 2024-06-12-07-14-24
2024/06/12 07:14:24 total time: 8.5259157s
2024/06/12 07:14:24 total dirs copied: 8
2024/06/12 07:14:24 total files copied: 10418
C:\> set CONFIG_NOITA_DST_PATH='C:\Users\demo\backuptest'
C:\> noitabackup.exe backup
2024/06/12 07:14:16 timestamp: 2024-06-12-07-14-16
2024/06/12 07:14:16 source: C:\Users\demo\AppData\Roaming\..\LocalLow\Nolla_Games_Noita\save00
2024/06/12 07:14:16 destination: C:\Users\demo\NoitaBackups\2024-06-12-07-14-16
2024/06/12 07:14:16 number of backups: 16
2024/06/12 07:14:16 maximum backup threshold reached
2024/06/12 07:14:16 removing backup folder: C:\Users\demo\NoitaBackups\2024-06-11-07-33-30
2024/06/12 07:14:24 timestamp: 2024-06-12-07-14-24
2024/06/12 07:14:24 total time: 8.5259157s
2024/06/12 07:14:24 total dirs copied: 8
2024/06/12 07:14:24 total files copied: 10418