Results 41 - 60 of 82

FileReader.readAsText()

The readAsText method is used to read the contents of the specified Blob or File. When the read operation is complete, the readyState is changed to DONE, the loadend is triggered, and the result attribute contains the contents of the file as a text string.
API File API Files Method Reference Référence

FileReader.readyState

Provides the current state of the reading operation.
API File API Files Property Reference Référence

FileReader.result

Returns the file's contents. This property is only valid after the read operation is complete, and the format of the data depends on which of the methods was used to initiate the read operation.
API File API Files Property Reference Référence

File.lastModifiedDate

The File.lastModifiedDate read-only property returns the last modified date of the file. Files without a known last modified date returns the current date .
API Deprecated File API Files Property Read-only Reference

FileReader.readAsArrayBuffer()

The FileReader interface's readAsArrayBuffer() method is used to start reading the contents of a specified Blob or File. When the read operation is finished, the readyState becomes DONE, and the loadend is triggered. At that time, the result attribute contains an ArrayBuffer representing the file's data.
API DOM File API FileReader Files Method readAsArrayBuffer Reference

FileSystemSync

In the File System API, a FileSystemSync object represents a file system. It has two properties.
API File API File System API Files filesystem Offline