在javascript中读取本地目录

发布于 2024-12-29 21:09:20 字数 417 浏览 0 评论 0原文

你们知道如何读取本地目录吗 使用JavaScript?

就像我需要在列表中输出某个目录的元素一样。

我看到类似 using 的东西

window.requestFileSystem(window.TEMPORARY, 1024*1024, onInitFs, errorHandler); 

,但在 onInitFs 函数中,这一行给出了 fs.root is undefined 错误。

function onInitFs(fs) { var dirReader = fs.root.createReader();var entries = [];... }

你能帮我解决这个问题吗?多谢。

顺便说一句,该页面将在 IE8 上运行。

Do you guys have an idea on how to read a local directory
using javascript?

Like I need to output in a list the elements of a certain directory.

I saw something like using

window.requestFileSystem(window.TEMPORARY, 1024*1024, onInitFs, errorHandler); 

but in the onInitFs function this line gives out the fs.root is undefined error.

function onInitFs(fs) { var dirReader = fs.root.createReader();var entries = [];... }

Can you help me bout this? Thanks a lot.

By the way, the page will be running on IE8.

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

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

发布评论

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

评论(1

姐不稀罕 2025-01-05 21:09:20

AFAIK,requestFileSystem 仅受具有 webkitRequestFileSystem 版本的 Chrome 支持。其他浏览器不支持。

IE还有可以使用的文件系统对象(FSO)。

这不是使用 javascript 读取用户文件系统的好习惯,这也是并非所有浏览器都支持它的原因。


您应该使用服务器端语言来执行相同的操作。

AFAIK, requestFileSystem is only supported by Chrome with webkitRequestFileSystem version. Other browsers don't support it.

IE also has File System Object (FSO) which can be used.

This isn't a good practice to read file system of a user using javascript and that's a reason why it isn't supported by all browsers.


You should use server-side language to do the same instead.

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