1
0
Files
settings/Batch/save-TheLongDark.cmd
2026-01-16 11:11:16 +01:00

14 lines
398 B
Batchfile
Executable File

@echo off
set game_dir="%localappdata%\Hinterland"
set save_dir="%documents%\My Games\The Long Dark"
for /f "tokens=1-3 delims=. " %%a in ("%DATE%") do (set mydate=%%c-%%b-%%a)
for /f "tokens=1-3 delims=: " %%a in ("%TIME%") do (set mytime=%%a%%b%%c)
if exist %game_dir% (
cd /d %game_dir%
zip -qr %save_dir%\%mydate%-%mytime%.zip TheLongDark*
) else (
echo Game dir not found!
)