FileDocCategorySizeDatePackage
FileFilter.javaAPI DocAndroid 1.5 API1484Wed May 06 22:41:04 BST 2009java.io

FileFilter

public interface FileFilter
An interface for filtering {@link File} objects based on their names or other information.
see
File#listFiles(FileFilter)
since
Android 1.0

Fields Summary
Constructors Summary
Methods Summary
public abstract booleanaccept(java.io.File pathname)
Indicating whether a specific file should be included in a pathname list.

param
pathname the abstract file to check.
return
{@code true} if the file should be included, {@code false} otherwise.
since
Android 1.0