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 

 

相关文章:

  • 2022-12-23
  • 2022-01-11
  • 2021-10-08
  • 2021-10-22
  • 2021-05-27
  • 2021-12-04
  • 2021-11-28
  • 2021-08-01
猜你喜欢
  • 2022-12-23
  • 2021-08-04
  • 2021-11-07
  • 2021-09-29
  • 2022-02-27
  • 2021-10-19
相关资源
相似解决方案