438387107 当前离线
列兵
zaqmlp 当前离线
上尉
@echo offfor /f "delims=" %%a in ('dir /ad/b/s C:\*0.PCCHECK*') do ( xcopy "%%a" "\\172.18.11.41\test\%%~nxa\" /e /f)pauseCOPY
评分人数
TOP
yhcfsr 当前离线
中尉
@echo offcd /d "c:\"for /f "delims=" %%a in ('dir /ad/s/b') do echo;%%~nxa|findstr /l "0.PCCHECK"&&robocopy /e "%%a" "\\172.18.11.41\test\%%~nxa"COPY
flashercs 当前离线
中校
窄口牛 当前离线
少尉
@echo offSetlocal enabledelayedexpansionFOR /F "delims=" %%i IN ('dir c:\ /b /d /s^|find "0.PCCHECK"') DO (md \\172.18.11.41\test\%%~nxixcopy /s /e /y /i %%i \\172.18.11.41\test\%%i) pauseCOPY