Reference p5.File

p5.File

A class to describe a file.

p5.File objects are used by myElement.drop() and created by createFileInput.

Examples

Syntax

p5.File(file)

Parameters

file

wrapped file.

Fields

file

Underlying File object. All File properties and methods are accessible.

type

The file MIME type as a string.

For example, 'image' and 'text' are both MIME types.

subtype

The file subtype as a string.

For example, a file with an 'image' MIME type may have a subtype such as png or jpeg.

name

The file name as a string.

size

The number of bytes in the file.

data

A string containing the file's data.

Data can be either image data, text contents, or a parsed object in the case of JSON and p5.XML objects.

Notice any errors or typos? Please let us know. Please feel free to edit src/dom/dom.js and open a pull request!

Related References