org.apache.commons.io.filefilter
Class FileFileFilter
- FileFilter, FilenameFilter, IOFileFilter
public class FileFileFilter
This filter accepts
File
s that are files (not directories).
For example, here is how to print out a list of the real files
within the current directory:
File dir = new File(".");
String[] files = dir.list( FileFileFilter.FILE );
for ( int i = 0; i < files.length; i++ ) {
System.out.println(files[i]);
}
$Revision: 155419 $ $Date: 2006-08-28 08:39:07 +0200 (Mo, 28 Aug 2006) $
boolean | accept(File file) - Checks to see if the file is a file.
|
FILE
public static final IOFileFilter FILE
Singleton instance of file filter
FileFileFilter
protected FileFileFilter()
Restrictive consructor.