//执行bat文件
                System.Diagnostics.Process myProc = new System.Diagnostics.Process();
                myProc.StartInfo.FileName = batPath;
                myProc.Start();
//调用cmd.exe
                System.Diagnostics.Process.Start("cmd.exe", ff);

相关文章:

  • 2022-12-23
  • 2021-12-05
  • 2021-05-16
  • 2022-12-23
猜你喜欢
  • 2021-06-23
  • 2022-12-23
  • 2021-06-10
  • 2021-10-22
  • 2022-12-23
  • 2021-10-31
相关资源
相似解决方案