使用 HTML 5、Javascript 和文件 API 下载文件

发布于 2024-12-06 06:31:51 字数 566 浏览 1 评论 0原文

我们可以将 HTML 的 FileAccess API 与使用 javascript 的文件正常下载集成吗?

我们通常通过以下方式下载文件:

var fileUrl='../File.doc';    
window.open(fileUrl,'Downloading');  

现在我相信文件会被下载到tempFolder和我们指定下载的文件夹中。

但是我们是否可以将文件下载到沙盒位置,如 HTML 5 文件 API 的 WWC 草案

如果可能的话,我相信“需要一种方法来删除我的 上一个问题将得到解决。

Can we integrate the FileAccess API of HTML with normal download of Files using javascript.

We typically download a file by the below way:

var fileUrl='../File.doc';    
window.open(fileUrl,'Downloading');  

Now I believe that the file would be downloaded to tempFolder and the folder designated by us for download.

But is it possible for us to download the file to a sandboxed location as mentioned in WWC draft on HTML 5 File API.

If this is possible, I believe "need for a way to delete downloaded files" of my previous question would be solved.

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

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

发布评论

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

评论(1

简单气质女生网名 2024-12-13 06:31:51

There's a new download attribute you can add to links that tells the browser to download the resource rather than navigating to it. That downloads the file to whatever "Downloads" folder the browser uses by default. You cannot programmatically delete files that are downloaded. That would be a security risk.

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