Files
img-to-pdf/script/execute.bat
T
2021-06-25 17:34:02 +02:00

16 lines
232 B
Batchfile

:: execute.bat, 25/06/2021
:: author: LucasVBR
@ECHO OFF
:: Execute script
if exist ./ToPDF.py (
:: Create folder if it do not exist
if not exist out mkdir out
python ./ToPDF.py
) else (
echo ToPDF.py doesn't exist
pause
)