How do I ensure C#'s Process.Start will expand environment variables?

泪湿孤枕 提交于 2020-01-24 02:25:28

问题


I'm attempting to create a process like so:

var psi = new ProcessStartInfo
{
    FileName = @"%red_root%\bin\texturepreviewer.exe",
    UseShellExecute = true
};

var process = Process.Start(psi);
process.WaitForExit();

Now the environment variable "red_root" definitely exists in the spawned process' environment variables, but the execute doesn't seem to expand the environment variable and so the file isn't found. How can I get the Process.Start to expand the environment variable in the file name?


回答1:


The Environment.ExpandEnvironmentVariables method should help here.

Replaces the name of each environment variable embedded in the specified string with the string equivalent of the value of the variable, then returns the resulting string.

string unexpandedPath = "%red_root%\\bin\\texturepreviewer.exe";   
psi.FileName = Environment.ExpandEnvironmentVariables(unexpandedPath);



回答2:


Have you tried System.Environment.GetEnvironmentVariable ("red_root", EnvironmentVariableTarget.Machine) ?



来源:https://stackoverflow.com/questions/4388639/how-do-i-ensure-cs-process-start-will-expand-environment-variables

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!