The File interface provides information about files and allows JavaScript in a web page to access their content.
File objects are generally retrieved from a FileList object returned as a result of a user selecting files using the <input> element, from a drag and drop operation's DataTransfer object, or from the mozGetAsFile() API on an HTMLCanvasElement. In Gecko, privileged code can create File objects representing any local file without user interaction (see Implementation notes for more information.)
A File object is a specific kind of a Blob, and can be used in any context that a Blob can. In particular, FileReader, URL.createObjectURL(), createImageBitmap(), and XMLHttpRequest.send() accept both Blobs and Files.
See Using files from web applications for more information and examples.
Constructor
File()- Returns a newly constructed
File.
Properties
The File interface also inherits properties from the Blob interface:
File.lastModifiedRead only- Returns the last modified time of the file, in millisecond since the UNIX epoch (January 1st, 1970 at Midnight).
File.lastModifiedDateRead only- Returns the last modified
Dateof the file referenced by theFileobject. File.nameRead only- Returns the name of the file referenced by the
Fileobject. File.sizeRead only- Returns the size of the file.
File.webkitRelativePathRead only- Returns the path the URL of the
Fileis relative to.
Methods
The File interface doesn't define any methods, but inherits methods from the Blob interface:
Specifications
| Specification | Status | Comment |
|---|---|---|
| File API | Working Draft | Initial definition |
Browser compatibility
| Feature | Chrome | Edge | Firefox (Gecko) | Internet Explorer | Opera | Safari (WebKit) |
|---|---|---|---|---|---|---|
| Basic support | 13 | (Yes) | 3.0 (1.9)[1] 7 (7) |
10.0 | 11.5 | 6.0 |
name |
? | (Yes) | 3.6 (1.9.2) | 11.0 | ? | ? |
lastModifiedDate |
? | No support | 15 (15) | ? | ? | ? |
webkitRelativePath |
(Yes) | (Yes) | 49 (49) | ? | (Yes) | (Yes) |
| size | ? | ? | ? | 11.0 | ? | ? |
| Feature | Android | Edge | Firefox Mobile (Gecko) | IE Phone | Opera Mobile | Safari Mobile |
|---|---|---|---|---|---|---|
| Basic support | No support | (Yes) | 1.0 (1.9)[1] 7.0 (7) |
No support | 11.1 | 6.0 |
name |
? | (Yes) | 1.0 (1.9.2) | ? | ? | ? |
lastModifiedData |
? | No support | 15.0 (15) | ? | ? | ? |
webkitRelativePath |
(Yes) | (Yes) | 49.0 (49) | ? | (Yes) |
(Yes) |
| size | ? | ? | ? | ? | ? | ? |
[1] Non-standard implementation.
Implementation notes
- In Gecko, you can use this API from within chrome code. See Using the DOM File API in chrome code for details. To use it from chrome code, JSM and Bootstrap scope, you have to import it using
Cu.importGlobalProperties(['File']); - Starting from Gecko 6.0 (Firefox 6.0 / Thunderbird 6.0 / SeaMonkey 2.3), privileged code (such as extensions) can pass an
nsIFileobject to the DOMFileconstructor to specify the file to reference. - Starting from Gecko 8.0 (Firefox 8.0 / Thunderbird 8.0 / SeaMonkey 2.5), you can use
new Fileto createFileobjects from XPCOM component code instead of having to instantiate thensIDOMFileobject directly. The constructor takes, in contrast toBlob, as second argument the filename. The filename can be any String.new File( Array parts, String filename, BlobPropertyBag properties );
- The following non-standard properties and methods were removed in Gecko 7 (Firefox 7.0 / Thunderbird 7.0 / SeaMonkey 2.4):
File.fileName,File.fileSize,File.getAsBinary(),File.getAsDataURL(),File.getAsText(string encoding)(bug 661876). Standard propertiesFile.name,Blob.size, and methods onFileReadershould be used instead.
See also
- Using files from web applications
FileReader- Using the DOM File API in chrome code (for privileged code running in Gecko, such as Firefox add-ons)