W3cubDocs

/Deno

File

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

class File extends Blob {
constructor(
fileBits: BlobPart[],
fileName: string,
options?: FilePropertyBag,
);
readonly lastModified: number;
readonly name: string;
}

Extends

Blob

Constructors

new File(fileBits: BlobPart[], fileName: string, options?: FilePropertyBag)

Properties

lastModified: number
name: string

© 2018–2021 the Deno authors
https://doc.deno.land/deno/stable/~/File