Uses of Interface
org.apache.commons.io.file.PathVisitor
Packages that use PathVisitor
-
Uses of PathVisitor in org.apache.commons.io.file
Classes in org.apache.commons.io.file that implement PathVisitorModifier and TypeClassDescriptionclass
Accumulates normalized paths during visitation.class
Deletes files but not directories as a visit proceeds.class
Copies a source directory to a target directory.class
Counts files, directories, and sizes, as a visit proceeds.class
Deletes files and directories as a visit proceeds.class
A noop path visitor.class
ASimpleFileVisitor
typed to aPath
. -
Uses of PathVisitor in org.apache.commons.io.filefilter
Classes in org.apache.commons.io.filefilter that implement PathVisitorModifier and TypeClassDescriptionclass
Abstracts the implementation of theFileFilter
(IO),FilenameFilter
(IO),PathFilter
(NIO) interfaces via our ownIOFileFilter
interface.class
Filters files based on a cutoff time, can filter either newer files or files equal to or older.class
AFileFilter
providing conditional AND logic across a list of file filters.class
This filter acceptsFile
s that can be executed.class
This filter acceptsFile
s that can be read.class
This filter acceptsFile
s that can be written to.class
This class turns a Java FileFilter or FilenameFilter into an IO FileFilter.class
This filter acceptsFile
s that are directories.class
This filter accepts files or directories that are empty.class
Accepts only an exactFile
object match.class
This filter acceptsFile
s that are files (not directories).class
This filter acceptsFile
s that are hidden.class
File filter for matching files containing a "magic number".class
Filters file names for a certain name.class
This filter produces a logical NOT of the filters specified.class
AFileFilter
providing conditional OR logic across a list of file filters.class
Accepts only an exactPath
object match.class
Delegates matching to aPathMatcher
.class
A file filter backed by a path visitor.class
Filters file names for a certain prefix.class
Filters files using supplied regular expression(s).class
Filters files based on size, can filter either smaller files or files equal to or larger than a given threshold.class
Filters files based on the suffix (what the file name ends with).class
This filter acceptsFile
s that are symbolic links.class
Filters files using the supplied wildcards.class
Deprecated.Use WildcardFileFilter.Constructors in org.apache.commons.io.filefilter with parameters of type PathVisitorModifierConstructorDescriptionPathVisitorFileFilter
(PathVisitor pathVisitor) Constructs a new instance that will forward calls to the given visitor.