ddnet/other/config_directory.bat

15 lines
222 B
Batchfile

@echo off
if exist "%APPDATA%\DDNet\" (
start explorer "%APPDATA%\DDNet\"
exit /b
)
if exist "%APPDATA%\Teeworlds\" (
start explorer "%APPDATA%\Teeworlds\"
exit /b
)
echo No configuration directory was found.
pause