我们可以重命名/写入 HTML5 中的本地文件吗
我知道我们可以读取本地文件用户已选择的文件,但是是否能够在 JavaScript 中重命名或写入本地文件?
Possible Duplicate:
Modifying Local Files Using HTML5 and JavaScript
I know we can read a local file that has been selected by the user, but is there the ability to rename or write to local files in javascript?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
出于明显的安全原因,无法用 Javascript 原生编写文件系统。
但是,如果您必须,可以使用 ActiveX 对象(仅在 IE 中)。它是 Scripting.FileSystemObject。
您可以在 msdn 上找到有关该野兽的文档 网站。
There is no way to natively write the filesystem in Javascript, for obvious security reasons.
However, if you must, there is an ActiveX object (Only in IE). It's
Scripting.FileSystemObject
.You will find the documentation about that beast on the msdn site.