FileList : Object
A object representing a list of %%/File|Files%%.
Available on the
%%/HTMLInputElement#files|HTMLInputElement.files%% property.
Spec:
http://www.w3.org/TR/FileAPI/#dfn-filelist
----
instance[index : Number] : File
Returns the File at the specified **index**.
You can also use the %%#item|**item()**%% method
to retrieve the item.
ReadOnly:
true
----
instance.length : Number
The number of Files in the list.
ReadOnly:
true
----
prototype.item(index : Number) : File
Same as %%#indexer_Number|**this[index]**%%.