Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
876 views
in Technique[技术] by (71.8m points)

replace - Copy files from one folder to another, if files in subfolder are modified

Dears,

I have a code that works for copying the files, from one to another folder, it also search if the file exists in the subfolders.

But I want it to check if files are modified and replace the old ones.

This is the code that works for me.

I would appreciate for your help.

@echo off
for %%I in ("C:est1*") do (
    dir "C:est2\%%~nxI" /A-D /B /S >nul 2>nul
    if errorlevel 1 copy "%%I" "C:est2" >nul
)
question from:https://stackoverflow.com/questions/66059263/copy-files-from-one-folder-to-another-if-files-in-subfolder-are-modified

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...