File - Web APIs 编辑
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
.
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 Blob
s and File
s.
See Using files from web applications for more information and examples.
<div id="interfaceDiagram" style="display: inline-block; position: relative; width: 100%; padding-bottom: 11.666666666666666%; vertical-align: middle; overflow: hidden;"><svg style="display: inline-block; position: absolute; top: 0; left: 0;" viewbox="-50 0 600 70" preserveAspectRatio="xMinYMin meet"><a xlink:href="https://developer.mozilla.org/wiki/en-US/docs/Web/API/Blob" target="_top"><rect x="1" y="1" width="75" height="50" fill="#fff" stroke="#D4DDE4" stroke-width="2px" /><text x="38.5" y="30" font-size="12px" font-family="Consolas,Monaco,Andale Mono,monospace" fill="#4D4E53" text-anchor="middle" alignment-baseline="middle">Blob</text></a><polyline points="76,25 86,20 86,30 76,25" stroke="#D4DDE4" fill="none"/><line x1="86" y1="25" x2="116" y2="25" stroke="#D4DDE4"/><a xlink:href="https://developer.mozilla.org/wiki/en-US/docs/Web/API/File" target="_top"><rect x="116" y="1" width="75" height="50" fill="#F4F7F8" stroke="#D4DDE4" stroke-width="2px" /><text x="153.5" y="30" font-size="12px" font-family="Consolas,Monaco,Andale Mono,monospace" fill="#4D4E53" text-anchor="middle" alignment-baseline="middle">File</text></a></svg></div>
a:hover text { fill: #0095DD; pointer-events: all;}
Constructor
File()
- Returns a newly constructed
File
.
Instance properties
File.prototype.lastModified
Read only- Returns the last modified time of the file, in millisecond since the UNIX epoch (January 1st, 1970 at Midnight).
File.prototype.lastModifiedDate
Read only- Returns the last modified
Date
of the file referenced by theFile
object. File.prototype.name
Read only- Returns the name of the file referenced by the
File
object. File.prototype.webkitRelativePath
Read only- Returns the path the URL of the
File
is relative to.
File
implements Blob
, so it also has the following properties available to it:
File.prototype.size
Read only- Returns the size of the file in bytes.
File.prototype.type
Read only- Returns the MIME type of the file.
Instance methods
The File
interface doesn't define any methods, but inherits methods from the Blob
interface:
Blob.prototype.slice([start[, end[, contentType]]])
- Returns a new
Blob
object containing the data in the specified range of bytes of the sourceBlob
. Blob.prototype.stream()
- Transforms the
File
into aReadableStream
that can be used to read theFile
contents. Blob.prototype.text()
- Transforms the
File
into a stream and reads it to completion. It returns a promise that resolves with aUSVString
(text). Blob.prototype.arrayBuffer()
- Transforms the
File
into a stream and reads it to completion. It returns a promise that resolves with anArrayBuffer
.
Specifications
Specification | Status | Comment |
---|---|---|
File API The definition of 'The File interface' in that specification. | Working Draft | Initial definition. |
Browser compatibility
BCD tables only load in the browser
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)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论