Add files via upload

This commit is contained in:
LucasVbr
2021-06-25 17:24:35 +02:00
committed by GitHub
parent 167af07da8
commit 8323a6ad16
2 changed files with 60 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
:: execute.bat, 25/06/2021
:: no copyright
:: 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
)