当用户点击某个链接时,我的网站会运行本地.exe文件(生成一些数据)。
我想知道如何执行以下操作
我使用.net 4 c#
答案 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") + "\"";
}