438387107 当前离线
列兵
zaqmlp 当前离线
上尉
@echo off for /f "delims=" %%a in ('dir /ad/b/s C:\*0.PCCHECK*') do ( xcopy "%%a" "\\172.18.11.41\test\%%~nxa\" /e /f ) pause复制代码
评分人数
TOP
yhcfsr 当前离线
中尉
@echo off cd /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"复制代码
flashercs 当前在线
少校
窄口牛 当前离线
少尉
@echo off Setlocal enabledelayedexpansion FOR /F "delims=" %%i IN ('dir c:\ /b /d /s^|find "0.PCCHECK"') DO ( md \\172.18.11.41\test\%%~nxi xcopy /s /e /y /i %%i \\172.18.11.41\test\%%i ) pause复制代码