C# 执行bat批处理文件

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();
}

bat里写的

Resgen.exe  StringResources.zh-cn.txt StringResources.zh-cn.resources 

 

posted @ 2016-11-02 17:33  ChineseMoonGod  阅读(3375)  评论(0编辑  收藏  举报