主页 > 编程资料 > C# >
发布时间:2015-10-08 作者:网络 阅读:196次
private void RunBat(string batPath)
{
Process pro = new Process();
 
FileInfo file = new FileInfo(batPath);
pro.StartInfo.WorkingDirectory = file.Directory.FullName;
pro.StartInfo.FileName = batPath;
pro.StartInfo.CreateNoWindow = false;
pro.Start();
pro.WaitForExit();
}

转载自[ http://www.cnblogs.com/zjfree/ 

关键字词: