Hello Raymond,

If you want to exclude certain files by extensions within a specific
diretory, you should configure another options statement for this purpose:

FileSet {
   Name = p2file
   Include {
      Options {
         wildfile = "*.pst"
         wildfile = "*.jpeg"
         Exclude = yes
      }
      Options {
         Compression = LZO
      }
      File = D:/Data
   }

On Mon, Feb 8, 2016 at 5:35 PM, Raymond Burns Jr. <rbur...@gmail.com> wrote:

> I am trying to exclude certain files by extensions
>
> FileSet {
>   Name = p2file
>           # Insert the Client's hostname (All lowercase)
>   Include {
>               # Adjust Files to be included in backup. CAUTION!! Slash
> direction is important !!CAUTION
>     File = D:/Data
>     Options {
>   Compression = LZO
>       # Set the compression level using GZIP1 - GZIP9 or LZO (LZO
> Compression or none is the fastest)
>     }
>   }
>   Exclude {
>     File = "*.pst"
>     File = "*.jpeg"
>   }
> }
>
>
>
> Afterwards, I want to run a job that is only *.pst extensions.
>

​For backing up only *.pst extensions with LZO compression:

​FileSet {
   Name = p2file
   Include {
      File = D:/Data
      Options {
         Compression = LZO
         wildfile = "*.pst"
      }
      Options {
         RegExFile = ".*"
         Exclude = yes
      }
   }

​Best regards,
Ana​





> I'm not sure if I correctly excluded, and I have no idea how to complete
> the include for only PST for my next job.
>
>
> ------------------------------------------------------------------------------
> Site24x7 APM Insight: Get Deep Visibility into Application Performance
> APM + Mobile APM + RUM: Monitor 3 App instances at just $35/Month
> Monitor end-to-end web transactions and take corrective actions now
> Troubleshoot faster and improve end-user experience. Signup Now!
> http://pubads.g.doubleclick.net/gampad/clk?id=272487151&iu=/4140
> _______________________________________________
> Bacula-users mailing list
> Bacula-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/bacula-users
>
>
------------------------------------------------------------------------------
Site24x7 APM Insight: Get Deep Visibility into Application Performance
APM + Mobile APM + RUM: Monitor 3 App instances at just $35/Month
Monitor end-to-end web transactions and take corrective actions now
Troubleshoot faster and improve end-user experience. Signup Now!
http://pubads.g.doubleclick.net/gampad/clk?id=272487151&iu=/4140
_______________________________________________
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users

Reply via email to