Stay organized with collections
Save and categorize content based on your preferences.
FileFilter
@FunctionalInterface interface 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 |
Tests whether or not the specified abstract pathname should be included in a pathname list.
|
Public methods
accept
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 |
Content and code samples on this page are subject to the licenses described in the Content License. Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.
Last updated 2025-02-10 UTC.
[null,null,["Last updated 2025-02-10 UTC."],[],[],null,["# FileFilter\n\nAdded in [API level 1](https://developer.android.com/guide/topics/manifest/uses-sdk-element.html#ApiLevels)\n\nFileFilter\n==========\n\n```\n@FunctionalInterface interface FileFilter\n```\n\n|-------------------------|\n| [java.io.FileFilter](#) |\n\nA filter for abstract pathnames.\n\nInstances of this interface may be passed to the [listFiles(FileFilter)](/reference/kotlin/java/io/File#listFiles(java.io.FileFilter)) method of the [java.io.File](/reference/kotlin/java/io/File) class.\n\nSummary\n-------\n\n| Public methods ||\n|---------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| abstract [Boolean](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html) | [accept](#accept(java.io.File))`(`pathname:` `[File](/reference/kotlin/java/io/File)!`)` Tests whether or not the specified abstract pathname should be included in a pathname list. |\n\nPublic methods\n--------------\n\n### accept\n\nAdded in [API level 1](https://developer.android.com/guide/topics/manifest/uses-sdk-element.html#ApiLevels) \n\n```\nabstract fun accept(pathname: File!): Boolean\n```\n\nTests whether or not the specified abstract pathname should be included in a pathname list.\n\n| Parameters ||\n|------------|-----------------------------------------------------------------------------|\n| `pathname` | [File](/reference/kotlin/java/io/File)!: The abstract pathname to be tested |\n\n| Return ||\n|------------------------------------------------------------------------------------|-----------------------------------------------------|\n| [Boolean](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html) | `true` if and only if `pathname` should be included |"]]