public class WildcardFileFilter extends AbstractFileFilter implements Serializable
This filter selects files and directories based on one or more wildcards. Testing is case-sensitive by default, but this can be configured.
The wildcard matcher uses the characters '?' and '*' to represent a single or multiple wildcard characters. This is the same as often found on DOS/Unix
command lines. The check is case-sensitive by default. See FilenameUtils.wildcardMatchOnSystem(String,String) for more information.
To build an instance, use WildcardFileFilter.Builder.
For example:
File dir = FileUtils.current();
FileFilter fileFilter = WildcardFileFilter.builder().setWildcards("*test*.java~*~").get();
File[] files = dir.listFiles(fileFilter);
for (String file : files) {
System.out.println(file);
}
final Path dir = PathUtils.current();
final AccumulatorPathVisitor visitor = AccumulatorPathVisitor.withLongCounters(
WildcardFileFilter.builder().setWildcards("*test*.java~*~").get());
//
// Walk one directory
Files.walkFileTree(dir, Collections.emptySet(), 1, visitor);
System.out.println(visitor.getPathCounters());
System.out.println(visitor.getFileList());
//
visitor.getPathCounters().reset();
//
// Walk directory tree
Files.walkFileTree(dir, visitor);
System.out.println(visitor.getPathCounters());
System.out.println(visitor.getDirList());
System.out.println(visitor.getFileList());
Serialization is deprecated and will be removed in 3.0.
| Modifier and Type | Class and Description |
|---|---|
static class |
WildcardFileFilter.Builder
Builds a new
WildcardFileFilter instance. |
EMPTY_STRING_ARRAY| Modifier and Type | Method and Description |
|---|---|
boolean |
accept(File file)
Tests to see if the file name matches one of the wildcards.
|
boolean |
accept(File dir,
String name)
Tests to see if the file name matches one of the wildcards.
|
FileVisitResult |
accept(Path path,
BasicFileAttributes attributes)
Tests to see if the file name matches one of the wildcards.
|
static WildcardFileFilter.Builder |
builder()
Constructs a new
WildcardFileFilter.Builder. |
String |
toString()
Provide a String representation of this file filter.
|
append, append, get, handle, isDirectory, isFile, postVisitDirectory, preVisitDirectory, toDefaultFileVisitResult, toFileVisitResult, visitFile, visitFileFailedclone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitand, matches, negate, orpublic boolean accept(File file)
accept in interface FileFilteraccept in interface IOFileFilteraccept in class AbstractFileFilterfile - the file to checkpublic boolean accept(File dir, String name)
accept in interface FilenameFilteraccept in interface IOFileFilteraccept in class AbstractFileFilterdir - the file directory (ignored)name - the file namepublic FileVisitResult accept(Path path, BasicFileAttributes attributes)
accept in interface PathFilteraccept in interface IOFileFilterpath - the file to checkattributes - the path's basic attributes (may be null).public static WildcardFileFilter.Builder builder()
WildcardFileFilter.Builder.WildcardFileFilter.Builder.public String toString()
toString in class AbstractFileFilter