Use this tag for questions related to the W3C File API. The W3C File API specifies how file objects should be represented and how their properties should be accessed.
The W3C File API at https://w3c.github.io/FileAPI/ specifies how file objects should be represented and how their properties should be accessed.
The File API spec includes the following interfaces:
Blob- raw binary data.Blobobjects can be created via theBlob()constructor, but their properties are read-only.File- a specific type ofBlobwith additional read-only properties.FileList- a collection ofFileobjects.FileReader- provides asynchronous access to a content of aBloborFileobject.