如何在 Chrome 扩展中使用 Javascript 获取文件大小?
如何使用 javascript 获取在 chrome 沙盒部分写入的文件的大小?
How can I get the size of file written in a sandboxed section of chrome using javascript ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这并不容易。
FileEntry 和 Entry 接口有一个名为 getMetaData 的方法,但这不包括文件大小。我可以弄清楚如何执行此操作的唯一方法如下:
意味着可能会加载文件。
It is not amazingly easy.
The FileEntry and Entry interface has a method called getMetaData, but this doesn't include the file size. The only way that I could work out how to do it is as follows:
It means potentially loading the file.