网站运行可执行程序

时间:2011-03-06 08:20:25

标签: c# asp.net-mvc

当用户点击某个链接时,我的网站会运行本地.exe文件(生成一些数据)。

我想知道如何执行以下操作

  • 用于运行.exe?
  • 的命令
  • 我应该在哪里存储.exe并仍然保持安全性?

我使用.net 4 c#

2 个答案:

答案 0 :(得分:2)

不确定这是否适用于MVC,但请试一试:

// Process class resides in System.Diagnostics namespace
Process myProcess = Process.Start("...");
myProcess.WaitForExit();
// todo : process your data

答案 1 :(得分:1)

这是我在我的一个应用程序中使用的东西:

 var p = new Process();
 p.StartInfo.UseShellExecute = false;
 p.StartInfo.RedirectStandardOutput = true;
 p.StartInfo.RedirectStandardError = true;
 p.StartInfo.FileName = HttpContext.Current.Server.MapFfmpegPath();
 p.StartInfo.Arguments = "arguments go here :)";
 p.Start();
 p.WaitForExit();

至于可执行文件本身,我在项目中创建了一个目录并将exe放在该目录中。 MapFfmpegPath方法看起来像这样。

public static string MapFfmpegPath(this HttpServerUtility server)
{
  return "\"" + server.MapPath("/CoolPathHere/ffmpeg.exe") + "\"";
}