0

We backup a large directory structure but want to exclude some directories.

Is it possible to exclude subfolders when the parent folder contains a file named "nobackup.txt"?

John Gardeniers
  • 27,262
  • 12
  • 53
  • 108
andre
  • 1

1 Answers1

2

No, at least not directly from a Robocopy command. You could use another method to search the directory tree looking for "nobackup.txt" and create a file which lists those directories. You then tell Robocopy to exclude the directories listed in that file.

John Gardeniers
  • 27,262
  • 12
  • 53
  • 108