Stephen Reynolds wrote:
> Please help
> 
> How do backup *.doc file only? I cannot get the regexfile to work
> 
> FileSet {
>   Name = "Full Set"
>   Include {
>      Options {
>         wildfile = *.doc
>       }
>      Options {
>         Exclude = yes
>         RegexFile = "^.?*$"

This regex matches everything. It's the same as saying ".*"

>      }
>      File = "c:/My Documents/*"

Why not just say

Options {
        Exclude = yes
        RegexFile = ".*\.[^Dd][^Oo][^Cc]$"
}

?

It's not pretty, but should do what you want.

-- 
Russell Howe
[EMAIL PROTECTED]


-------------------------------------------------------
SF.Net email is sponsored by: Discover Easy Linux Migration Strategies
from IBM. Find simple to follow Roadmaps, straightforward articles,
informative Webcasts and more! Get everything you need to get up to
speed, fast. http://ads.osdn.com/?ad_id=7477&alloc_id=16492&op=click
_______________________________________________
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users

Reply via email to