Added in API level 1
    FileFilter
@FunctionalInterface interface FileFilter
| java.io.FileFilter | 
A filter for abstract pathnames.
 Instances of this interface may be passed to the listFiles(FileFilter)java.io.File
Summary
| Public methods | |
|---|---|
| abstract Boolean | Tests whether or not the specified abstract pathname should be included in a pathname list. | 
Public methods
accept
Added in API level 1
      abstract fun accept(pathname: File!): Boolean
Tests whether or not the specified abstract pathname should be included in a pathname list.
| Parameters | |
|---|---|
| pathname | File!: The abstract pathname to be tested | 
| Return | |
|---|---|
| Boolean | trueif and only ifpathnameshould be included | 
