访问文件夹以逐个列出/播放剪辑
我只想知道是否有一个对象可以访问包含 javascript 中的剪辑列表的文件夹路径。
我应该使用哪个对象来列出文件夹中的剪辑?实际上我不能使用所有对象,仅为 Ecmascript 提供。
I just want to know if there is an object to access a folder path which includes list of clips in javascript.
Which object I should use to list clips in a folder? Actually I can't use all objects, only provided for Ecmascript.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
JavaScript/Ecmascript 无法看到本地文件系统。如果可以的话,我们就会让网页在未经我们同意的情况下嗅探我们的所有文件。
JavaScript/Ecmascript cannot see the local filesystem. If it could then we'd have web pages sniffing all of our files without our consent.
JavaScript 无法查看用户的文件系统。这对世界各地的每个人来说都是一个巨大的安全问题。如果您指的是服务器的文件系统,那么您可能已经有了更好的语言,例如 php,它可以列出目录内容并在发送到浏览器之前动态生成 JS。
JavaScript doesn't get to see the user's file system. That'd be a huge security problem for everyone everywhere. If you're referring to the server's file system then you probably already have a better language like php that can list the directory contents and dynamically generate the JS before it is sent to the browser.