
【已解決】批處理如何將多個BAT代碼合而為一最后由 思想之翼 于 -3-6 16:34若有如下若干BAT代碼,如何將其合而為一?懇望再次得到幫助。@echo offfor /f skip=10 delims= %%i in ('dir /b /a-d /o-n /s C:01lishi*.txt') do (copy %%i C:數據1.txtgoto :eof)@echo offfor /f skip=10 delims= %%i in ('dir /b /a-d /o-n /s C:02lishi*.txt') do (copy %%i C:數據2.txtgoto :eof)@echo offfor /f skip=10 delims= %%i in ('dir /b /a-d /o-n /s C:03lishi*.txt') do (copy %%i C:數據3.txtgoto :eof).....@echo offfor /f skip=10 delims= %%i in ('dir /b /a-d /o-n /s C:210lishi*.txt') do (copy %%i C:數據210.txtgoto :eof)

