Page 1 of 1

Multiple Wildcard Patterns

Posted: Mon Feb 27, 2017 2:04 pm
by abarry1
Hello All,

I use to do this at a previous job, but I just cannot remember how I was doing it.

I am deleting files using the wildcard filters and I want to be able to put multiple file types into the same pattern.

For example, I am doing the following:

<delete version="1.0">
<fileset dir="/opt/local/GoAnywhere_Services/userdata/webdocs/aaaabbbb">
<wildcardFilter>
<include pattern="*.tif" />
<include pattern="*_ERMV_*" />
<include pattern="*_TIFF_*" />
</wildcardFilter>
</fileset>
</delete>

What I would like to do is:

<delete version="1.0">
<fileset dir="/opt/local/GoAnywhere_Services/userdata/webdocs/aaaabbbb">
<wildcardFilter>
<include pattern="*.tif"; "*_ERMV_*";"*_TIFF_*" />
</wildcardFilter>
</fileset>
</delete>

Any recommendations on how I can accomplish this?

Thanks in advance,
Adam

Re: Multiple Wildcard Patterns

Posted: Thu Mar 09, 2017 8:52 am
by Support_Rick
The first option is your only "wildcard" option. You can do the other utilizing "RegEx".

Re: Multiple Wildcard Patterns

Posted: Wed Mar 15, 2017 3:46 pm
by abarry1
Thanks Rick, yes, I have decided to use regex instead.