spgen_single.bat 123 B

123456789
  1. @echo off
  2. cd %1
  3. if errorlevel 0 (
  4. FOR %%j in (*.xml) DO (
  5. echo processing %%~fj
  6. call ..\..\Tool\spgen.bat %%~fj
  7. )
  8. cd ..
  9. )