在文件路径中使用环境变量
我有一个指向特定文件夹的环境变量集(例如,称为 MYFOLDER)。在 Windows 资源管理器中输入 %MYFOLDER%\SubFolder
时,会显示子文件夹。但是,当我将 SelectedPath = @"%MYFOLDER%\SubFolder";
传递给 FolderBrowserDialog
时,它不起作用。
我尝试使用 Path.GetFullPath(..) ,但这似乎返回可执行文件的 bin 文件夹(在 VS 中调试时),末尾带有 %MYFOLDER%,而不是我想要的路径预计。
有人知道如何让它正确使用环境变量吗?
I've got an environment variable set that points to a specific folder (call it MYFOLDER for example). When typing in %MYFOLDER%\SubFolder
into windows explorer the subfolder appears. However, when I pass SelectedPath = @"%MYFOLDER%\SubFolder";
to a FolderBrowserDialog
, it doesn't work.
I tried using Path.GetFullPath(..)
, but this seems to return the bin folder of the executable (while debugging in VS) with %MYFOLDER% on the end, instead of the path I'd expect.
Anyone know how to get it to use the environment variable properly?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
首先展开它:
http://msdn.microsoft.com/en-us/library/ system.environment.expandenvironmentvariables.aspx
Expand it first:
http://msdn.microsoft.com/en-us/library/system.environment.expandenvironmentvariables.aspx