应用程序可以默认写入“我的文档”吗? Windows 7 中的文件夹?

发布于 2024-10-20 20:49:48 字数 266 浏览 1 评论 0原文

如果我创建一个将 .txt 文件写入 C:\Users\username\Documents\file.txt 的应用程序。 它会起作用吗?在 Windows 7 和 Vista 中?比如说...特别是如果我有一个全新的默认安装的 Windows 7,然后尝试将文件 file.txt 写入“我的文档”文件夹:C:\users\username\documents\file.txt。如果我在这个文件夹中创建一个具有所有权限的目录怎么办? 或者...它会起作用,但我会收到一些愚蠢的管理员权限提示消息? 提前致谢!

If I create an application that writes a .txt file to C:\Users\username\Documents\file.txt.
Will it work? In Windows 7 and Vista? Say...especially if I have a brand new default installation of windows 7 and then attempt to write the file file.txt to the "my documents" folder: C:\users\username\documents\file.txt. What if I create a directory with all permissions inside this folder?
Or...it will work but I will get some stupid prompt message for admin privileges?
thanks in advance!

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

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

发布评论

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

评论(3

奢望 2024-10-27 20:49:48

假设您使用 Environment.GetFolderPath() 正确获取了文件夹路径,那么就可以了。

Assuming that you get the folder path correctly using Environment.GetFolderPath(), then you'll be fine.

晨与橙与城 2024-10-27 20:49:48

不,您不能假设您拥有该文件夹的写入权限。

不要在该文件夹中创建文件

文档文件夹供用户在其中放置文件,而不是供应用程序使用。请改用路径 %appdata%\yourappname\file.txt

No, you can not assume that you have write privileges in that folder.

And please, do not create files in that folder!

The documents folder is for the user to put files there, not for applications. Use the path %appdata%\yourappname\file.txt instead.

妄司 2024-10-27 20:49:48

是的,它应该有效。用户对其“我的文档”文件夹具有写入权限。即使对于有限的用户也是如此。您不会收到管理员提示。

Yes, it should work. The user has write access to his my documents folder. This is the case even for a limited user. You won't get an admin prompt.

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