org.apache.commons.io.filefilter

Class FileFileFilter

public class FileFileFilter extends AbstractFileFilter

This filter accepts Files 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]);
 }
 

Since: Commons IO 1.3

Version: $Revision: 155419 $ $Date: 2006-08-28 08:39:07 +0200 (Mo, 28 Aug 2006) $

Field Summary
static IOFileFilterFILE
Singleton instance of file filter
Constructor Summary
protected FileFileFilter()
Restrictive consructor.
Method Summary
booleanaccept(File file)
Checks to see if the file is a file.

Field Detail

FILE

public static final IOFileFilter FILE
Singleton instance of file filter

Constructor Detail

FileFileFilter

protected FileFileFilter()
Restrictive consructor.

Method Detail

accept

public boolean accept(File file)
Checks to see if the file is a file.

Parameters: file the File to check

Returns: true if the file is a file