- @echo off
- Setlocal enabledelayedexpansion
- rem 设置忽略的文件夹
- set hulue=D:\test\z
- rem 设置bat工作的路径bat的目标文件夹
- set lujing=D:\test\
- rem 设置需要更新的文件路径你要把需要更新的文件放在这里
- set ppath=D:\test2
- set file=
- rem 程序主体
- for /f %%a in ('dir /s /b !ppath!') do (set file=%%a
- echo 即将更新的文件是:!file!
- for /f %%a in ('dir /s /b %lujing%!file! ^|findstr /vibc:"%hulue%"') do (
- copy /y /v !ppath!\!file! %%a
- if %errorlevel% gtr 0 (echo %%a >>error.txt)
- )
- )
- pause
复制代码 需求:
遍历制定文件夹的所有目录,将指定的文件替换掉。 |