-
Notifications
You must be signed in to change notification settings - Fork 0
Exclusions
UncleRiot edited this page Jul 11, 2026
·
2 revisions
Exclusions prevent selected files or folders from being backed up.
Exclude a name on any level:
bin
Exclude folders only:
bin\
Exclude all .sav files:
.sav
or:
*.sav
Exclude files in one source-relative folder:
Saved\SaveGames\*.sav
Exclude matching folders on any level:
**\SaveGames\*.sav
Exclude files in a folder and all subfolders:
Saved\**\*.sav
-
*matches within one folder level -
**matches multiple folder levels -
?is not supported
Matching is case-insensitive.
Wildcard-only rules are blocked for safety.
[IMAGE: Exclusions dialog and hint]