防止环境变量扩展
我目前正在开发一个应用程序,旨在成为 Windows 的改进环境变量编辑器。
我使用了 System.Environment.GetEnvironmentVariables() 和 Registry 来获取它们。然而,这两种方法都会扩展 % 之间的文本,因此我得到的不是 %systemroot%/system32 实例,而是 C:/Windows/system32/在我的程序中。
有没有办法阻止这些项目的扩展?
I am currently developing an application meant to be an improved environment variables editor for Windows.
I have used both System.Environment.GetEnvironmentVariables() and Registry to get them. However both methods expands the text between %, so instead of getting as instance %systemroot%/system32 I get C:/Windows/system32/ in my program.
Is there a way to prevent the expansion of these items?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
当您从注册表获取环境变量时 - 您需要使用特殊标志:RegistryValueOptions.DoNotExpandEnvironmentNames。
When you are getting environment variables from the registry - you need to use a special flag:
RegistryValueOptions.DoNotExpandEnvironmentNames
.