Create "script" folder

This commit is contained in:
Tchi
2021-06-25 17:27:27 +02:00
parent 8323a6ad16
commit 3e08eee591
2 changed files with 59 additions and 59 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
)