| @echo off | | cd /d "%~dp0" | | | | set procCount=4 | | | | for /r "总文件夹" %%B in (*.b) do ( | | call :sync | | echo %%B | | | | start "" a.exe "%%~B" | | ) | | exit /b | | | | :sync | | | | for /f "delims=" %%A in ('tasklist /fi "imagename eq a.exe" /fo csv /nh^|find /c ","') do ( | | if %%~A geq %procCount% ( | | ping -n 2 127.0.0.1 | | goto sync | | ) | | ) | | exit /bCOPY |
|