7 lines
151 B
Batchfile
7 lines
151 B
Batchfile
@echo off
|
|
chcp 65001 >nul
|
|
cd /d "%~dp0"
|
|
if exist "python\python.exe" (set PY=python\python.exe) else (set PY=python)
|
|
%PY% app\anime_sorter.py %*
|
|
pause
|