0

バッチ ファイルでフォルダーを別のフォルダーにコピーする方法を知りたいです。同名のものを上書きしてほしい。ありがとう。

4

2 に答える 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 に答える