File

Provides information about files and allows JavaScript in a web page to access their content.

interface File extends Blob {
readonly lastModified: number;
readonly name: string;
}
var File: {
readonly prototype: File;
new (
fileBits: BlobPart[],
fileName: string,
options?: FilePropertyBag,
): File;
}
;

§Extends

§Properties

§
readonly lastModified: number
[src]
§
readonly name: string
[src]