首页 > 编程技术 > csharp

C# 执行bat批处理文件的小例子

发布时间:2020-6-25 11:39

复制代码 代码如下:

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

标签:[!--infotagslink--]

您可能感兴趣的文章: