如何从系统路径变量的路径中获取绝对路径?
有没有一种简单的方法可以将带有系统路径变量的路径转换为绝对路径?
因此 %ProgramFiles%\Internet Explorer\hmmapi.dll
变为 C:\Program Files\Internet Explorer\hmmapi.dll
我想知道是否有一个 API 调用可以这样做,还是我必须以困难的方式做到这一点并检测 %..% 序列并将其替换为相应的环境变量?
Is there an easy way to translate a path with system path variables to an absolute path?
So %ProgramFiles%\Internet Explorer\hmmapi.dll
becomes C:\Program Files\Internet Explorer\hmmapi.dll
I like to know if there is an API call that can do this, or do I have to do this the hard way and detect %..% sequences and replace them with the corresponding environment variable?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 WinAPI 函数
ExpandEnvironmentStrings
:You can use the WinAPI function
ExpandEnvironmentStrings
: