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) method of the java.io.File class.

Summary

Public methods
abstract Boolean
accept(pathname: File!)

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 true if and only if pathname should be included