xcopy /d c:\test\1 c:\test\2 &
del /Q c:\test\1\*
复制:xcopy
/d 不需要提示是否覆盖
c:\test\1 源路径文件夹
c:\test\2 目标路径文件夹
& 多条命令 顺序执行 之间的符号
del 删除
/q 不需要提示
c:\test\1\* 删除执行路径文件夹