Skip to content

Instantly share code, notes, and snippets.

@SrslySims
Created April 10, 2020 18:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save SrslySims/817dc7aba6037e2353d0e3e9bed76a7e to your computer and use it in GitHub Desktop.
Save SrslySims/817dc7aba6037e2353d0e3e9bed76a7e to your computer and use it in GitHub Desktop.
@echo off
:: variables
set drive=E:\Sims 4 Stuff\-- BACKUPS --\BATCH Backup
set backupcmd=xcopy /s /c /d /e /h /i /r /y
echo ### Backing up Sims 4 Save Files...
%backupcmd% "%USERPROFILE%\Documents\Electronic Arts\The Sims 4\saves" "%drive%\Documents\Electronic Arts\The Sims 4\saves"
echo ### Backing up Sims 4 Tray Files...
%backupcmd% "%USERPROFILE%\Documents\Electronic Arts\The Sims 4\Tray" "%drive%\Documents\Electronic Arts\The Sims 4\Tray"
echo ### Backing up Sims 4 Screenshots...
%backupcmd% "%USERPROFILE%\Documents\Electronic Arts\The Sims 4\Screenshots" "%drive%\Documents\Electronic Arts\The Sims 4\Screenshots"
echo Backup Complete!
@pause
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment