Details
-
Type:
New Feature
-
Status:
Closed
-
Priority:
Minor
-
Resolution: Fixed
-
Affects Version/s: 1.8.0
-
Fix Version/s: 1.8.2
-
Component/s: Administrator, Server
-
Labels:None
-
Environment:All
Description
albertosaez asked me to add this issue.
It would be useful if the "Filename Filter Pattern" field on the Source tab would accept full regex patterns. This would allow people to use one channel to process files with different filename patterns instead of creating a duplicate channel or using a source filter which is less efficient.
Thanks!
It would be useful if the "Filename Filter Pattern" field on the Source tab would accept full regex patterns. This would allow people to use one channel to process files with different filename patterns instead of creating a duplicate channel or using a source filter which is less efficient.
Thanks!


MIRTH-567You can use a delimited list separated by commas. See Mule's WildcardFilter.java:
public void setPattern(String pattern)
{
this.pattern = pattern;
this.patterns = Utility.split(pattern, ",");
}
MIRTH-567You can use a delimited list separated by commas. See Mule's WildcardFilter.java: public void setPattern(String pattern) { this.pattern = pattern; this.patterns = Utility.split(pattern, ","); }