任何人都可以帮我解决这个问题。
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();
我收到此错误:系统无法找到指定的文件。