C# 运行.exe 并获取返回值

  protected int ProcessInfoReturnValue()
    {
        try
        { 
            string strExePath = HttpContext.Current.Server.MapPath("~\\SWFTools\\pdf2swf.exe");
            ProcessStartInfo info = new ProcessStartInfo(strExePath);
           // ProcessStartInfo info = new ProcessStartInfo(strExePath,传给EXE 的参数);
            info.UseShellExecute = false;
            //隐藏exe窗口状态
            info.WindowStyle = ProcessWindowStyle.Hidden;
            //运行exe
            Process proBach = Process.Start(info);
            // 取得EXE运行后的返回值,返回值只能是整型
            int returnValue = proBach.ExitCode;
            return returnValue;
        }
        catch (Exception ex)
        {


        }
        return 0;
    }

你可能感兴趣的:(asp.net,技术)