Advertisement
Guest User

Monster Hunter World Save Backup

a guest
Aug 13th, 2018
2,109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Batch 1.10 KB | None | 0 0
  1. ::Backup Monster Hunter World saves by prepending the date and time to the front of the filename
  2. ::Copy and paste this into a text editor and save and/or rename it as a .bat file.
  3. ::Replace the path after sourceFile= and backupFolder= with the drive letter and path to the source and destination.
  4. ::To restore a save simply rename the file to SAVEDATA1000 and copy it into your save directory, replacing the file there.
  5. @echo off
  6.  
  7. :: Change these two variables
  8. set sourceFile=C:\Programs\Steam\userdata\87654321\582010\remote\SAVEDATA1000
  9. set backupFolder=D:\Libraries\UserName\Documents\Monster Hunter World Save Backups
  10.  
  11. :: Saves the file with proper date and time formatting in front of it in the form of YYYY_MM_DD_HH_MM_SAVEDATA1000
  12. set hour=%time:~0,2%
  13. if "%hour:~0,1%"==" " set hour=0%time:~1,1%
  14. set filename=%date:~10,4%_%date:~4,2%_%date:~7,2%_%hour%_%time:~3,2%_SAVEDATA1000
  15. set backupcmd=copy /v
  16.  
  17. echo ### Backing up Monster Hunter World... ###
  18.  
  19. %backupcmd% "%sourceFile%" "%backupFolder%\%filename%"
  20.  
  21. echo:
  22. echo Backup Complete!
  23. echo Files copied to %backupFolder%\%filename%
  24. echo:
  25.  
  26. pause
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement