type

DomFile

src @Js
class DomFile : Obj

DomFile models a DOM File object.

methods

ext

Return file name extension (everything after the last dot) or null name has no dot.

name

Name of file.

readAsDataUri

Asynchronously load file contents as a data: URI representing the file's contents.

readAsText

Asynchronously load file contents as text and invoke the callback function with results.

size

Size of file in bytes.

type

MIME type of the file as a read-only string or "" if the type could not be determined.

Slot Details

ext

src Str? ext()

Return file name extension (everything after the last dot) or null name has no dot.

name

src Str name()

Name of file. This is just the file name, and does not include any path information.

readAsDataUri

src Void readAsDataUri(|Uri| f)

Asynchronously load file contents as a data: URI representing the file's contents.

readAsText

src Void readAsText(|Str| f)

Asynchronously load file contents as text and invoke the callback function with results.

size

src Int size()

Size of file in bytes.

type

src Str type()

MIME type of the file as a read-only string or "" if the type could not be determined.