Advertisement
Guest User

bkup

a guest
Sep 5th, 2020
140
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Batch 0.70 KB | None | 0 0
  1. REM bkup.bat
  2. REM
  3. REM Backs up Scrap Mechanic saves to a new folder in the directory in which this script is located.
  4. REM Specifically written to run without modifications, but no guarantees.
  5. REM
  6. REM The copied save folder will be named in this format: Save [year]-[month]-[day] [hour]h
  7. REM
  8. REM Note that backed-up saves will be overwritten if the output folder already exists (when the script is run 2+ times in the same hour).
  9.  
  10. @echo off
  11. for /F "EOL=L" %%A in ('WMIC OS Get LocalDateTime') do set "date=%%~nA" & goto :next
  12. :next
  13. set name=Save %date:~0,4%-%date:~4,2%-%date:~6,2% %date:~8,2%h
  14. for /D %%I in ("%appdata%\Axolot Games\Scrap Mechanic\User\User*") do robocopy "%%~I\Save" "%name%" /E
  15. pause
  16.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement