This feature is well established and works across many devices and browser versions. It’s been available across browsers since January 2020.
Note: This feature is available in Web Workers.
The File() constructor creates a new File object instance.
new File(fileBits, fileName) new File(fileBits, fileName, options)
fileBitsAn iterable object such as an Array, having ArrayBuffers, TypedArrays, DataViews, Blobs, strings, or a mix of any of such elements, that will be put inside the File. Note that strings here are encoded as UTF-8, unlike the usual JavaScript UTF-16 strings.
fileNameA string representing the file name or the path to the file.
options OptionalAn options object containing optional attributes for the file. Available options are as follows:
type OptionalA string representing the MIME type of the content that will be put into the file. Defaults to a value of "".
endings OptionalHow to interpret newline characters (\n) within the contents, if the data is text. The default value, transparent, copies newline characters into the blob without changing them. To convert newlines to the host system's native convention, specify the value native.
lastModified OptionalA number representing the number of milliseconds between the Unix time epoch and when the file was last modified. Defaults to a value of Date.now().
const file = new File(["foo"], "foo.txt", {
type: "text/plain",
});
| Specification |
|---|
| File API> # file-constructor> |
| Desktop | Mobile | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Chrome | Edge | Firefox | Opera | Safari | Chrome Android | Firefox for Android | Opera Android | Safari on IOS | Samsung Internet | WebView Android | WebView on iOS | |
File |
38 | 79 | 28 | 25 | 10.1 | 38 | 28 | 25 | 10.3 | 3.0 | 38 | 10.3 |
© 2005–2025 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/File/File