怎样在C#中调用*.bat批处理文件

2024年11月16日 06:02
有1个网友回答
网友(1):

try
{
Process pro=new Process();
pro.StartInfo.UseShellExecute=true;
pro.StartInfo.FileName=@"c:\1.bat";
pro.StartInfo.CreateNoWindow=true;
pro.Start();
}
catch(Exception ex)
{MessageBox.Show(ex.Message);}