I’m trying to find an implementation of java.io.FileFilter which understands patterns like these: "**/*.xml", "src/**/*.java", etc. Do you know any package that can provide such a filter (commons-io doesn’t do this, or I can’t understand how).
I’m trying to find an implementation of java.io.FileFilter which understands patterns like these: **/*.xml
Share
You might want to check out DirectoryScanner from the Ant project. It does not implement FileFilter but it does recognize those types of patterns.