mirror of
https://github.com/LucasVbr/img-to-pdf.git
synced 2026-05-13 17:21:51 +00:00
16 lines
232 B
Batchfile
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
|
|
)
|