11 lines
275 B
Batchfile
11 lines
275 B
Batchfile
@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 |