[Box Backup] Getting dirlist?
Ben Summers
boxbackup@fluffy.co.uk
Mon, 31 Jan 2005 21:12:55 +0000
On 31 Jan 2005, at 20:34, Remco Poelstra wrote:
> Per Thomsen wrote:
>> home-remco
>> {
>> Path = /home/remco
>> ExcludeDirsRegex = ^[\.]+*
>> ExcludeFilesRegex = ^[\.]+*
>> AlwaysIncludeDir = .gnupg
>> }
>
> Thanks for your reply,
> Sadly it didn't change anything.
> Isn't it strange that even .gnupg isn't backuped? No matter what files
> are selected by the other two rules?
The regexes are matched against the entire path, not just the leafname.
For example,
ExcludeDirsRegex = /\.[^/]*$
AlwaysIncludeDir = /home/remco/.gnupg
See if that works...
Ben