org.apache.commons.io.filefilter
Interface IOFileFilter
- FileFilter, FilenameFilter
- AbstractFileFilter, AgeFileFilter, AndFileFilter, DelegateFileFilter, DirectoryFileFilter, FalseFileFilter, NameFileFilter, NotFileFilter, OrFileFilter, PrefixFileFilter, SizeFileFilter, SuffixFileFilter, TrueFileFilter, WildcardFilter
public interface IOFileFilter
extends FileFilter, FilenameFilter
An interface which brings the FileFilter and FilenameFilter
interfaces together.
$Revision: 155419 $ $Date: 2005-02-26 08:02:41 -0500 (Sat, 26 Feb 2005) $- Henri Yandell
- Stephen Colebourne
boolean | accept(File file)- Checks to see if the File should be accepted by this filter.
|
boolean | accept(File dir, String name)- Checks to see if the File should be accepted by this filter.
|
accept
public boolean accept(File file)
Checks to see if the File should be accepted by this filter.
Defined in
java.io.FileFilter.
- true if this file matches the test
accept
public boolean accept(File dir,
String name) Checks to see if the File should be accepted by this filter.
Defined in
java.io.FilenameFilter.
dir - the directory File to checkname - the filename within the directory to check
- true if this file matches the test