org.apache.commons.io.filefilter
Class FileFileFilter
- FileFilter, FilenameFilter, Serializable, IOFileFilter
public class FileFileFilter
implements Serializable
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: 2007-10-24 16:53:07 +0100 (Wed, 24 Oct 2007) $
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.
Copyright (c) 2002-2009 Apache Software Foundation