9 lines
170 B
Batchfile
9 lines
170 B
Batchfile
@echo off
|
|
|
|
if exist %1\* (
|
|
for /R "%1" %%f in (*.csv) do ( python %~dp0\BudaPortaXmlConvert.py "%%f")
|
|
) else (
|
|
python %~dp0\BudaPortaXmlConvert.py %1
|
|
)
|
|
|
|
pause |