如何在C#Web应用程序中运行命令工具exe?

时间:2015-05-18 06:02:32

标签: c# shell web-applications command-line-arguments exe

我正在使用graphicmagic exe来使用命令提示符执行命令。我在我的应用程序根文件夹中添加了graphicmagic exe。我想执行这个exe并通过c#传递参数。这该怎么做?我试过以下代码:

方法:1

Process proc = new Process
{
    StartInfo = new ProcessStartInfo
    {
         FileName = AppDomain.CurrentDomain.BaseDirectory + "\\gm1.3.5\\gm",
         Arguments = "convert -define dpx:colorspace=rgb -define tiff:bits-per-sample=16 'D:\\Image\\FFv1\\dpx1\\1.dpx' 'D:\\Image\\FFv1\\tiff1\\1.tiff'",
         UseShellExecute = false,
         RedirectStandardOutput = true,
         CreateNoWindow = true
    }
}

方法:2

Process proc = new Process();
ProcessStartInfo startInfo = new ProcessStartInfo();
startInfo.WindowStyle = ProcessWindowStyle.Hidden;
startInfo.FileName = @"D:\Executable\Projects\MMF\gm1.3.5\gm";
startInfo.Arguments = "convert -define dpx:colorspace=rgb -define tiff:bits-per-sample=16 \"D:\\Image\\FFv1\\dpx1\\1.dpx\" \"D:\\Image\\FFv1\\tiff1\\1.tiff\"";
proc.StartInfo = startInfo;
proc.Start();

但两者都不起作用。请建议一种执行exe文件并传递命令的方法。

2 个答案:

答案 0 :(得分:0)

这应该是特权问题。 尝试将应用池中的标识调整为LocalSystem。

答案 1 :(得分:0)

这个工作正常:

using System.Diagnostics;

Process p = new Process();
p.StartInfo.FileName = @"D:\Executable\Projects\MMF\gm1.3.5\gm.exe";
p.StartInfo.Arguments = "convert -define dpx:colorspace=rgb -define tiff:bits-per-sample=16 \"C:\\Documents and Settings\\software\\Desktop\\DPX_Test\\3.dpx\" \"C:\\TEMP_21May2015103216\\3.tiff\"";
p.Start();                
p.WaitForExit();