windows批处理 复制文件和文件夹子文件夹

@echo off
 
::被复制的源文件夹
set sourceDir0=D:\xx\1
set sourceDir1=D:\xx\2
set sourceDir2=D:\xx\3\1.txt

::目标文件夹
set tarDir0=D:\yy\xx\1
set tarDir1=D:\yy\xx\2
set tarDir2=D:\yy\xx\3


::复制并覆盖文件及文件夹
xcopy %sourceDir0% %tarDir0% /S/Y
xcopy %sourceDir1% %tarDir1% /S/Y
xcopy %sourceDir2% %tarDir2% /S/Y

你可能感兴趣的:(windows,windows)