系统找不到process.start中指定的文件

时间:2016-10-07 08:46:52

标签: c#

任何人都可以帮我解决这个问题。

          string strEnvironmentalPath = Environment.GetEnvironmentVariable("PATH");
        startInfo = new ProcessStartInfo(@strEnvironmentalPath);           
        startInfo.UseShellExecute = false;
        startInfo.FileName = "Knime.exe";
        startInfo.Arguments = strParameters;
        startInfo.CreateNoWindow = true;           
        Process = Process.Start(@startInfo);          
        Process.CloseMainWindow();
        startInfo.WindowStyle = ProcessWindowStyle.Hidden;
        Process.WaitForExit();

我收到此错误:系统无法找到指定的文件。

0 个答案:

没有答案