org.apache.commons.io.filefilter

Class FileFileFilter

public class FileFileFilter extends AbstractFileFilter implements Serializable

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: 2007-10-24 16:53:07 +0100 (Wed, 24 Oct 2007) $

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

Copyright (c) 2002-2011 Apache Software Foundation