On 5/16/2011 3:37 PM, Steven Johnson wrote: > After further playing I am able to exclude .bak files from all backups and > subdirectories but I am still not able to exclude particular folders from all > subfolders. > Here's my config: > > $Conf{BackupFilesExclude} = { > '*' => [ > '/.AppleDB', > '/.AppleDesktop', > '/.AppleDouble', > '/Temporary Items', > '*.bak' > ] > }; > > using the above config, /.AppleDB folders are only excluded from the root of > each share, i would like them excluded from all subfolders within shares as > well. Thanks
Because that's exactly what you told it to do. The leading '/' anchors the exclusion to the root. Try this: $Conf{BackupFilesExclude} = { '*' => [ '.AppleDB', '/.AppleDesktop', '/.AppleDouble', '/Temporary Items', '*.bak' ] }; This will have the side-effect of also excluding any normal files named '.AppleDB', which may or may not be a problem for you. -- Bowie A: Because it messes up the order in which people normally read text. Q: Why is top-posting such a bad thing? A: Top-posting. Q: What is the most annoying thing in mailing lists? ------------------------------------------------------------------------------ Achieve unprecedented app performance and reliability What every C/C++ and Fortran developer should know. Learn how Intel has extended the reach of its next-generation tools to help boost performance applications - inlcuding clusters. http://p.sf.net/sfu/intel-dev2devmay _______________________________________________ BackupPC-users mailing list BackupPC-users@lists.sourceforge.net List: https://lists.sourceforge.net/lists/listinfo/backuppc-users Wiki: http://backuppc.wiki.sourceforge.net Project: http://backuppc.sourceforge.net/