我想知道如何将一个文件夹复制到批处理文件中的另一个文件夹。我想覆盖同名的东西。谢谢。
问问题
6306 次
2 回答
9
除非我遗漏了什么,否则最简单的方法是使用 xcopy (假设您实际上是指 Windows 上的 .bat 文件):
xcopy <SOURCE> <DEST> /e /d /y /h /r /c
解释这些标志:
/e: Include directories and sub directories even if empty
/d: Only copy files which have changed on SOURCE more recently than DEST
/y: Suppress prompts
/h: Also copy hidden and system files
/r: Override read-only files (e.g. ignore Read Only flag)
/c: Continue even if there are errors
资料来源:我的标准备份脚本,每天运行 6 年。
于 2013-01-17T00:35:54.213 回答
2
或查看 ROBOCOPY en.wikipedia.org/wiki/Robocopy
于 2013-01-17T12:18:50.613 回答