首页  编辑  

从另外目录更新同名文件到本目录

Tags: /计算机文档/脚本,批处理/   Date Created:
以下批处理命令,可以把本目录下存在的文件,从指定的目录下更新到本目录:
REM update.bat
@echo off
if not exist %1 goto help
for %%i in (*.*) do (
 if exist "%~1\%%i" echo update %%i & copy /y "%~1\%%i" > nul
)
goto end
:help
echo Update files from a folder to current folder
echo Usage:
echo   update [source_dir]
echo.
:end