Created
January 31, 2018 12:36
-
-
Save vczh/3bfc30f348a05d475da8d778dc844de8 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 | |
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