Skip to content

Instantly share code, notes, and snippets.

@vczh
Created January 31, 2018 12:36
Show Gist options
  • Save vczh/3bfc30f348a05d475da8d778dc844de8 to your computer and use it in GitHub Desktop.
Save vczh/3bfc30f348a05d475da8d778dc844de8 to your computer and use it in GitHub Desktop.
@echo off
if not exist %appdata%\DarkSoulsIII goto NODS3INSTALLED
pushd %~dp0
echo Found DarkSoulsIII save in %appdata%\DarkSoulsIII
rd /S /Q DarkSoulsIII
xcopy /S /I %appdata%\DarkSoulsIII DarkSoulsIII
echo Backup succeeded
popd
pause
goto FINISHED
:NODS3INSTALLED
echo You have not installed DarkSoulsIII in your computer
:FINISHED
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment