Files
bettergi-scripts-list/repo/js/FullyAutoAndSemiAutoTools/SymLink.bat
2026-03-28 10:40:36 +00:00

13 lines
279 B
Batchfile

@REM @echo off
set "target1=..\..\AutoPathing"
set "target2=..\..\pathing"
if exist "%target1%" (
mklink /j pathing "%target1%"
) else if exist "%target2%" (
mklink /j pathing "%target2%"
) else (
echo ERROR: Can't find folder "%target1%" or "%target2%"
pause
)