cs4204 当前离线
列兵
@echo off set currentPath=%cd% set originPath=E:\a set dirPath=E:\b set name=*.png for /r %originPath% %%i in (%name%) do ( echo %%i set var=%%~nxi echo %var% for /r %dirPath% %%a in (*%var%) do ( echo %%a copy /y %%i %%a ) ) pause复制代码
Batcher 当前离线
管理员
TOP