Package org.apache.commons.io.filefilter
Class PathEqualsFileFilter
- java.lang.Object
-
- org.apache.commons.io.filefilter.AbstractFileFilter
-
- org.apache.commons.io.filefilter.PathEqualsFileFilter
-
- All Implemented Interfaces:
java.io.FileFilter,java.io.FilenameFilter,java.nio.file.FileVisitor<java.nio.file.Path>,PathFilter,PathVisitor,IOFileFilter
public class PathEqualsFileFilter extends AbstractFileFilter
Accepts only an exactPathobject match. You can use this filter to visit the start directory when walking a file tree withFiles.walkFileTree(java.nio.file.Path, java.util.Set, int, java.nio.file.FileVisitor).- Since:
- 2.9.0
-
-
Field Summary
-
Fields inherited from interface org.apache.commons.io.filefilter.IOFileFilter
EMPTY_STRING_ARRAY
-
-
Constructor Summary
Constructors Constructor Description PathEqualsFileFilter(java.nio.file.Path file)Constructs a new instance for the givenPath.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanaccept(java.io.File file)Checks to see if the File should be accepted by this filter.java.nio.file.FileVisitResultaccept(java.nio.file.Path path, java.nio.file.attribute.BasicFileAttributes attributes)Checks to see if the Path should be accepted by this filter.-
Methods inherited from class org.apache.commons.io.filefilter.AbstractFileFilter
accept, postVisitDirectory, preVisitDirectory, toString, visitFile, visitFileFailed
-
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface org.apache.commons.io.filefilter.IOFileFilter
and, negate, or
-
-
-
-
Method Detail
-
accept
public boolean accept(java.io.File file)
Description copied from class:AbstractFileFilterChecks to see if the File should be accepted by this filter.- Specified by:
acceptin interfacejava.io.FileFilter- Specified by:
acceptin interfaceIOFileFilter- Overrides:
acceptin classAbstractFileFilter- Parameters:
file- the File to check- Returns:
- true if this file matches the test
-
accept
public java.nio.file.FileVisitResult accept(java.nio.file.Path path, java.nio.file.attribute.BasicFileAttributes attributes)Description copied from interface:IOFileFilterChecks to see if the Path should be accepted by this filter.- Parameters:
path- the Path to check.attributes- the file's basic attributes (TODO may be null).- Returns:
- true if this path matches the test.
-
-