在javascript中读取本地目录
你们知道如何读取本地目录吗 使用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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
AFAIK,
requestFileSystem
仅受具有webkitRequestFileSystem
版本的 Chrome 支持。其他浏览器不支持。IE还有可以使用的文件系统对象(FSO)。
这不是使用 javascript 读取用户文件系统的好习惯,这也是并非所有浏览器都支持它的原因。
您应该使用服务器端语言来执行相同的操作。
AFAIK,
requestFileSystem
is only supported by Chrome withwebkitRequestFileSystem
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.