如何使用 JavaScript(最好使用 MooTools 1.2)获取文件的大小?
如何使用 JavaScript(最好使用 MooTools 1.2)获取文件的大小?
How can I get the size of a file using JavaScript (preferably using MooTools 1.2)?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您正在谈论提供给类型为“file”的
标记的文件的大小,或者您的 Web 应用程序碰巧知道其路径的文件,那么您不能除非在某些非常特殊的情况下(例如从“file://”URL 加载的页面)。
If you're talking about the size of a file provided to an
<input>
tag of type "file", or a file whose path your web application happens to know, well, you can't except in some very particular cases (like a page loaded from a "file://" URL).本地还是远程?
如果是远程的,我会执行 HTTP HEAD 请求并检查 Content-Length 字段。
Local or remote?
If it's remote, I would do an HTTP HEAD request and check the Content-Length field.