运行没有.exe扩展名的外部应用程序

时间:2010-08-08 15:14:45

标签: c# .net process

我知道如何在C#System.Diagnostics.Process.Start(executableName);中运行外部应用程序,但是如果我想运行的应用程序具有Windows无法识别为可执行文件扩展名的扩展名。就我而言,它是application.bin

2 个答案:

答案 0 :(得分:30)

关键是在开始流程之前将Process.StartInfo.UseShellExecute属性设置为false,例如:

System.Diagnostics.Process p = new System.Diagnostics.Process();
p.StartInfo.FileName = @"c:\tmp\test.bin";
p.StartInfo.UseShellExecute  = false;
p.Start();

这将直接启动进程:而不是通过“让我们试图找出指定文件扩展名的可执行文件”shell逻辑,该文件将被视为可执行文件。

实现相同结果的另一种语法可能是:

var processStartInfo = new ProcessStartInfo
{
    FileName = @"c:\tmp\test.bin",
    UseShellExecute = false
};
Process.Start(processStartInfo);

答案 1 :(得分:3)

继续@yelnic。尝试使用cmd.exe /C myapp,我发现当我想要Process.Start()更多时,它非常有用。

using (Process process = Process.Start("cmd.exe") 
{
   // `cmd` variable can contain your executable without an `exe` extension
   process.Arguments = String.Format("/C \"{0} {1}\"", cmd, String.Join(" ", args));
   process.UseShellExecute  = false;
   process.RedirectStandardOutput = true;
   process.Start();
   process.WaitForExit();
   output = process.StandardOutput.ReadToEnd();
}