FileList

The FileList interface represents an object of this type returned by the files property of the HTML input element; this lets you access the list of files selected with the <input type='file'> element.

MDN Reference

Properties

Link copied to clipboard
open override val length: Int

Functions

Link copied to clipboard
open operator fun get(index: Int): File
open operator fun get(key: Symbol.iterator): () -> JsIterator<File>
Link copied to clipboard
fun item(index: Int): File?
Link copied to clipboard
open inline operator fun iterator(): Iterator<File>