I'm looking for a lib which would provide a method which would give me a list of files matching given Ant-like pattern.
For *foo/**/*.txt
I'd get
foo/x.txt
foo/bar/baz/.txt
myfoo/baz/boo/bar.txt
etc. I know it's achievable with DirWalker and
PathMatcher mat = FileSystems.getDefault().getPathMatcher("glob:" + filesPattern);
, but I'd rather some maintained lib. I expected Commons IO to have it but no.
Update: I'm happy with reusing Ant's code, but would prefer something smaller than whole Ant.
So I sacrified few MB of app's size for the sake of speed and used Ant's
DirectoryScanner
in the end.Also, there's Spring's PathMatchingResourcePatternResolver.
And here's my impl I started to code, not finished, just if someone would like to finish it. The idea was it would keep a stack of patterns, traverse the dir tree and compare the contents to the actual stack depth and the rest of it in case of
**
.But I resorted to
PathMatcher
and then to Ant's impl.