如何使用javascript获取文件夹中的文件列表 [英] how get list of files in a folder using javascript

查看:162
本文介绍了如何使用javascript获取文件夹中的文件列表的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在开发桌面应用程序项目。我正在使用 Qt的使用visual c ++控件。
我在QWebView中加载一个html文件,

I am working on project for desktop application. I am using Qt controls with visual c++. I am loading an html file in the QWebView as,

m_pWebView->load(QUrl("../../../demo/index_Splash_Screen.html"));

现在,我想要的是,比方说,我有一些 .zip 我所在位置的文件c:\ demo,我想要该目录中存在的文件的列表(或文件名数组)。

Now, what i want is, say, I have some .zip files in my location "c:\demo", I want list (or array of file names) of the files present in that directory.

我如何通过javascript完成此操作?

How can i do this through javascript ?

PS:我经历了这个链接,但它不符合我的要求。我没有使用过html,javascript和jquery。请帮助我。

PS: I went through this link, but it didnt match my requirement. I have not worked with of html, javascript and jquery. Please help me.

推荐答案

由于安全问题,我担心你无法使用javascript访问本地文件或目录。

I'm afraid you cannot access local files or directories using javascript due to security issues.

编辑:我没有想过文件api所以想了一下这可能不是真的,但如果没有一些用户输入来给予许可,这仍然无法完成。

I hadn't thought about the file api so thought for a moment this might not be true, but without some user input to give permission, this still cannot be done.

这个问题得到了PhilNicholas的好评:

This question has a good response from PhilNicholas:


恐怕我可能是坏人的承担者您的设计的新闻:您请求的操作
明确违反了File API规范中指定的
的安全模型。 FileReader()的客户端实现必须
确保用户首先选择了FileReader对象
正在读取的所有文件。 (W3C File API,13。安全
注意事项: http:// www .w3.org / TR / FileAPI / #security- discussion )。

这将是一个巨大的安全风险,浏览器脚本只需
在没有任何用户
交互的情况下,任意打开并读取路径中的任何文件。没有任何浏览器制造商允许对整个文件系统进行无限制的访问

It would be a huge security risk of browser scripts could just arbitrarily open and read any file from a path without any user interaction. No browser manufacturer would allow unfettered access to the entire file system like that.

考虑一下,如果它是所有都在本地运行,您可以使用ajax查询可能返回您请求的目录的服务器端脚本。

Thinking about it however, if it is all being run locally, you could use ajax to query a server side script that could return the directory you request.

这篇关于如何使用javascript获取文件夹中的文件列表的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆