3

I want to know if the list of Time Machine excluded files (pictured below) can be found in a file somewhere.

Time Machine exclude list

I know about the question On Lion, what files are excluded by rule from a Time Machine backup? which has a lot of good information about StdExclusions.plist, mdfind and tmutil – but not the answer for this question.

One answer also talks about .exclusions.plist, which is almost the answer to this question. But there's a catch, I haven't done a backup yet, so I can't read the .exclusions.plist file from the Time Machine backup volume.

I'm doing cd / ; sudo find . -iname "*exclusions*" now, keeping my fingers crossed.

dentarg
  • 310

1 Answers1

3

The Mountain Lion settings are identical to the Lion settings as described here:

The answer is /Library/Preferences/com.apple.TimeMachine.plist

dentarg
  • 310
  • This was the key answer, since

    defaults read /Library/Preferences/com.apple.TimeMachine.plist ExcludeByPath

    does what tmutil listexclusions should have done

    – Jamgold May 06 '14 at 00:08
  • In Mojave defaults read /Library/Preferences/com.apple.TimeMachine.plist SkipPaths – malhal Jul 04 '19 at 12:11