Wrote most of the script

This commit is contained in:
2021-06-02 00:14:36 +02:00
parent c3698b4833
commit 19f1ac487a
4 changed files with 166 additions and 0 deletions

11
BudaPortaXmlConvert.bat Normal file
View File

@@ -0,0 +1,11 @@
@echo off
if exist %1\* (
for /R "%1" %%f in (*.csv) do ( python %~dp0\BudaPortaXmlConvert.py "%%f")
@REM for /f %%a IN ('dir /b /s %1') do python %~dp0\BudaPortaXmlConvert.py "%%a"
@REM echo Directory
) else (
python %~dp0\BudaPortaXmlConvert.py %1
)
pause