如何在 Chrome 扩展中使用 Javascript 获取文件大小?

发布于 2024-10-28 18:31:48 字数 47 浏览 4 评论 0原文

如何使用 javascript 获取在 chrome 沙盒部分写入的文件的大小?

How can I get the size of file written in a sandboxed section of chrome using javascript ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

疧_╮線 2024-11-04 18:31:48

这并不容易。

FileEntry 和 Entry 接口有一个名为 getMetaData 的方法,但这不包括文件大小。我可以弄清楚如何执行此操作的唯一方法如下:

  1. 获取文件条目
  2. 调用文件,以获取对该文件的引用,该文件的类型为 Blob。
  3. 读取 blob.size

意味着可能会加载文件。

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:

  1. Get the file entry
  2. Call file, to get a reference to the file, the file is of type Blob.
  3. Read blob.size

It means potentially loading the file.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文