C 中的 Windows 用户主文件夹 (MinGW)
我正在尝试将用 C 编写的应用程序从 Linux 移植到 Windows。
目前我已经修复了“困难”部分,例如 缺少 posix 功能 等。
该应用程序现在可以在 Windows 上编译、链接和运行(fork() 内容除外,稍后将用 Windows 服务代码替换)。
我现在遇到的唯一问题是在 MSYS shell 中它一切正常(这为我映射了 UNIX 路径)。
在 MSYS shell 之外它不会工作,因为 ~ 不可用。
我正在寻找在我的 #ifdef 内容中设置 Windows 用户主页的最佳方法。
我在某处读到过有关 %USERPROFILE%
的内容,但这似乎并不工作。
I'm trying to port an application written in C from linux to windows.
At the moment I'm done fixing the 'hard' parts like missing posix features and the like.
The application compiles, links and works on Windows now (except for the fork() stuff which will be replaced with windows service code later).
The only problem I'm having now is that within the MSYS shell it all works (this maps unix paths for me).
Outside of the MSYS shell it won't work because ~ is not available.
I'm looking for the best way to set the windows user home within my #ifdef stuff.
I read about %USERPROFILE%
somewhere but that doesn't seem to work.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用
SHGetKnownFolderPath
(Vista+) 或SHGetFolderPath
取决于您的 Windows 版本。Use
SHGetKnownFolderPath
(Vista+) orSHGetFolderPath
depending on your Windows version.我认为你应该使用 SHGetFolderLocation API:
http://msdn.microsoft.com/en-us /library/bb762180%28VS.85%29.aspx
还不够,您甚至应该检索用户文件夹的 ID,但是从上面的文档位置开始,您应该拥有所需的所有内容。
这应该适用于任何 Windows 版本。
I think you should use the SHGetFolderLocation API:
http://msdn.microsoft.com/en-us/library/bb762180%28VS.85%29.aspx
well not enought, you should even retrieve the ID of the user folder, but by starting at the doc location above you should have all what you neeed.
This should works on any windows version.