Can anyone suggest a FileSet package/class in Java. By FileSet I mean a collection of files and directories together with regex-powered inclusion and exclusion rules (similar to Apache Ant). Thanks.
Can anyone suggest a FileSet package/class in Java. By FileSet I mean a collection
Share
You could make use of
File#listFiles()wherein you pass aFileFilterorFilenameFilterwhere in turn you can specify the desired pattern in theaccept()method.E.g.