找到“我的文档”使用 JavaScript 的路径

发布于 2024-11-17 19:26:45 字数 68 浏览 3 评论 0原文

我想用Javascript确定“我的文档”文件夹的路径。我需要它来指定可以存储应用程序日志的文件夹。

谢谢

I would like to determine the path of "my documents" folder with Javascript. I need it to specify the folder where I could store the logs of my application.

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

月亮邮递员 2024-11-24 19:26:45

使用 shell 的 SpecialFolders 方法:

shell = new ActiveXObject("WScript.Shell");
pathToMyDocuments = shell.SpecialFolders('MyDocuments');

http: //msdn.microsoft.com/en-us/library/0ea7b5xe%28v=vs.85%29.aspx

Use the SpecialFolders-method of the shell:

shell = new ActiveXObject("WScript.Shell");
pathToMyDocuments = shell.SpecialFolders('MyDocuments');

http://msdn.microsoft.com/en-us/library/0ea7b5xe%28v=vs.85%29.aspx

萌梦深 2024-11-24 19:26:45

出于明显的安全原因,您无法使用 Javascript 访问客户端文件系统。

You can't access client file system with Javascript for obvious security reasons.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文