Uses of Interface org.apache.commons.io.filefilter.IOFileFilter

Uses in package org.apache.commons.io

Methods with parameter type org.apache.commons.io.filefilter.IOFileFilter

void
FileUtils.innerListFiles(Collection files, File directory, IOFileFilter filter)
Finds files within a given directory (and optionally its subdirectories).
Iterator
FileUtils.iterateFiles(File directory, IOFileFilter fileFilter, IOFileFilter dirFilter)
Allows iteration over the files in given directory (and optionally its subdirectories).
Collection
FileUtils.listFiles(File directory, IOFileFilter fileFilter, IOFileFilter dirFilter)
Finds files within a given directory (and optionally its subdirectories).

Uses in package org.apache.commons.io.filefilter

Classes implementing org.apache.commons.io.filefilter.IOFileFilter

class
An abstract class which implements the Java FileFilter and FilenameFilter interfaces via the IOFileFilter interface.
class
Filters files based on a cutoff time, can filter either older or newer files.
class
A java.io.FileFilter providing conditional AND logic across a list of file filters.
class
This class turns a Java FileFilter or FilenameFilter into an IO FileFilter.
class
This filter accepts Files that are directories.
class
A file filter that always returns false.
class
Filters filenames for a certain name.
class
This filter produces a logical NOT of the filters specified.
class
A java.io.FileFilter providing conditional OR logic across a list of file filters.
class
Filters filenames for a certain prefix.
class
Filters files based on size, can filter either larger or smaller files as compared to a given threshold.
class
Filters files based on the suffix (what the filename ends with).
class
A file filter that always returns true.
class
Filters files using supplied wildcard(s).

Constructors with parameter type org.apache.commons.io.filefilter.IOFileFilter

Constructs a new file filter that ANDs the result of two other filters.
Constructs a new file filter that NOTs the result of another filters.
Constructs a new file filter that ORs the result of two other filters.

Fields of type org.apache.commons.io.filefilter.IOFileFilter

IOFileFilter
Singleton instance of directory filter
IOFileFilter
Singleton instance of false filter
IOFileFilter
Singleton instance of true filter
IOFileFilter
IOFileFilter
The filter
IOFileFilter

Methods with parameter type org.apache.commons.io.filefilter.IOFileFilter

void
void
Adds the specified file filter to the list of file filters at the end of the list.
void
IOFileFilter
Returns a filter that ANDs the two specified filters.
IOFileFilter
Returns an IOFileFilter that ignores CVS directories.
IOFileFilter
Returns an IOFileFilter that ignores SVN directories.
IOFileFilter
Returns a filter that NOTs the specified filter.
IOFileFilter
Returns a filter that ORs the two specified filters.
boolean
boolean
Removes the specified file filter.
boolean

Methods with return type org.apache.commons.io.filefilter.IOFileFilter

IOFileFilter
FileFilterUtils.ageFileFilter(Date cutoffDate)
Returns a filter that returns true if the file was last modified after the specified cutoff date.
IOFileFilter
FileFilterUtils.ageFileFilter(Date cutoffDate, boolean acceptOlder)
Returns a filter that filters files based on a cutoff date.
IOFileFilter
FileFilterUtils.ageFileFilter(File cutoffReference)
Returns a filter that returns true if the file was last modified after the specified reference file.
IOFileFilter
FileFilterUtils.ageFileFilter(File cutoffReference, boolean acceptOlder)
Returns a filter that filters files based on a cutoff reference file.
IOFileFilter
Returns a filter that returns true if the file was last modified after the specified cutoff time.
IOFileFilter
FileFilterUtils.ageFileFilter(long cutoff, boolean acceptOlder)
Returns a filter that filters files based on a cutoff time.
IOFileFilter
Returns a filter that ANDs the two specified filters.
IOFileFilter
FileFilterUtils.asFileFilter(FileFilter filter)
Returns an IOFileFilter that wraps the FileFilter instance.
IOFileFilter
FileFilterUtils.asFileFilter(FilenameFilter filter)
Returns an IOFileFilter that wraps the FilenameFilter instance.
IOFileFilter
Returns a filter that checks if the file is a directory.
IOFileFilter
Returns a filter that always returns false.
IOFileFilter
Returns an IOFileFilter that ignores CVS directories.
IOFileFilter
Returns an IOFileFilter that ignores SVN directories.
IOFileFilter
Returns a filter that returns true if the filename matches the specified text.
IOFileFilter
Returns a filter that NOTs the specified filter.
IOFileFilter
Returns a filter that ORs the two specified filters.
IOFileFilter
Returns a filter that returns true if the filename starts with the specified text.
IOFileFilter
Returns a filter that returns true if the file is bigger than a certain size.
IOFileFilter
FileFilterUtils.sizeFileFilter(long threshold, boolean acceptLarger)
Returns a filter that filters based on file size.
IOFileFilter
Returns a filter that returns true if the filename ends with the specified text.
IOFileFilter
Returns a filter that always returns true.