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

MDN Reference

interface File {
    lastModified: number;
    name: string;
    size: number;
    type: string;
    webkitRelativePath: string;
    arrayBuffer(): Promise<ArrayBuffer>;
    slice(start?: number, end?: number, contentType?: string): Blob;
    stream(): ReadableStream<Uint8Array>;
    text(): Promise<string>;
}

Hierarchy-Diagram

UML class diagram of File
Legend
icon for an interface in the UML class diagram interface
icon for a public property in the UML class diagram public property
icon for a public method in the UML class diagram public method

Hierarchy (view full)

Properties

lastModified: number
name: string
size: number
type: string
webkitRelativePath: string

Methods

  • Parameters

    • Optional start: number
    • Optional end: number
    • Optional contentType: string

    Returns Blob