public interface FilenameFilter
File objects based on their names
or the directory they reside in.File,
File.list(FilenameFilter)| Modifier and Type | Method and Description |
|---|---|
boolean |
accept(File dir,
String filename)
Indicates if a specific filename matches this filter.
|
boolean accept(File dir, String filename)
dir - the directory in which the filename was found.filename - the name of the file in dir to test.true if the filename matches the filter
and can be included in the list, false
otherwise.