Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我一直在网上搜索一种在浏览器中通过 Javascript 递归枚举目录中文件的方法。
查看 File API 我找不到任何东西。
有人可以指点我其他一些 API 或告诉我是否有可能做到这一点?
Javascript 对本地文件的访问非常受限。您无法搜索或枚举文件,只能访问用户有意选择的特定文件。
但是,您可以做的是编写一个 Java 小程序(可能必须对其进行签名才能获得必要的权限),该小程序将为您进行枚举并使其可以通过 Javascript 访问。这当然将您限制为安装了 Java 的平台和用户,但这几乎是您管理它的唯一方法。
你不能这样做。JavaScript 无权访问文件系统。