Dart API Referencedart:htmlFileList

FileList Interface

An object of this type is 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. It's also used for a list of files dropped into web content when using the drag and drop API; see the DataTransfer object for details on this usage.

Gecko 1.9.2 note

Prior to Gecko 1.9.2, the input element only supported a single file being selected at a time, meaning that the FileList would contain only one file. Starting with Gecko 1.9.2, if the input element's multiple attribute is true, the FileList may contain multiple files.

Extends

List<E>

Methods

Code File item(int index) #

Returns a File object representing the file at the specified index in the file list.

Parameters
index
The zero-based index of the file to retrieve from the list.
Return value

The File representing the requested file.

File item(int index);

Fields

Code final int length #

A read-only value indicating the number of files in the list.
final int length;

This page includes content from the Mozilla Foundation that is graciously licensed under a Creative Commons: Attribution-Sharealike license. Mozilla has no other association with Dart or dartlang.org. We encourage you to improve the web by contributing to The Mozilla Developer Network.