asp.Net exeファイルへのアクセス方法

697 ワード

  Process ,strFileName    exe     
public void CallSteven(string strFileName)
        {
            System.Diagnostics.Process prc = new System.Diagnostics.Process();
            try
            {
                prc.StartInfo.FileName = strFileName;
                prc.Start();
            }
            catch (Exception exU)
            {
                if (!prc.HasExited)
                {
                    prc.Close();
                }

                throw new Exception(exU.Message.ToString());
            }
        }