私はこのようなディレクトリ構造を持っています:
folder1\
help.txt
folder2\
help.txt
folder3\
help.txt
...
robocopyを使用してfolder1の内容をコピーしたい。例えば:
robocopy folder1 destination /E
folder1にあるhelp.textファイルを除外したいが、folder2、folder3などにhelp.txtファイルを含めたい含めるファイルへのパスをコーディングします。
次のコマンドを使用してhelp.txtという名前のすべてのファイルを除外できますが、folder1のルートにあるhelp.txtファイルを除外する方法はありますか?
robocopy folder1 destination /E /XF help.txt
robocopy folder1 destination /E /XF "c:\file1" "c:\file2"