Methode erzeugt um auf einen Rutsch alle Textdxf Dateien zu erzeugen

This commit is contained in:
2026-01-27 16:11:53 +01:00
parent 79ff6794db
commit 5f59433ac8
2 changed files with 37 additions and 11 deletions
+26
View File
@@ -0,0 +1,26 @@
@echo off
CALL setenv.bat
echo ========================================
echo Creating all test DXF files from testdata
echo Output directory: %PROJECT_WORK%
echo ========================================
echo.
REM Iterate through all CSV files in testdata directory
for %%f in (%PROJECT_TEST%\*.csv) do (
echo Processing: %%~nxf
CALL plant2dxf.bat -f "%%f" -o "%PROJECT_WORK%\%%~nf.dxf"
if errorlevel 1 (
echo ERROR: Failed to process %%~nxf
echo.
) else (
echo SUCCESS: Created %%~nf.dxf in work folder
echo.
)
)
echo ========================================
echo All test DXF files processed!
echo ========================================
pause