Jeffrey wrote:Looks like it is simply recapturing the next time a backup is performed. The drive is listed in the Archive Preferences Specific Items dialog box as simply
/UserName/ExcludeMeDir
This might be because your home folder is mounted on an another (not the startup) volume? This creates confusion for the bookmarks.
I deleted this so there are no entries in the Specific Items section and I'll trying entering it as a reg exp pattern now:
path
//Volumes/OtherHD/Users/UserName/ExcludeMeDir
pattern:
*
infinity: checked
Close
Absolute patterns are anchored to the root directory of each volume.
You'd actually want something like this:
/Users/UserName // ExcludeMeDir [ ] glob
To exclude the entire folder, or to be more subtle:
/Users/UserName/ExcludeMeDir // * [ ] glob
to exclude just the contents of that folder.
If you're still having problems, there are even more esoteric things to try.