C#d调用外部bat

引入名称空间:

using System.Diagnostics;

Process proc = null;
try
{
string targetDir = string.Format(@"D:/BATFile/");//this is where testChange.bat lies
proc = new Process();
proc.StartInfo.WorkingDirectory = targetDir;
proc.StartInfo.FileName = "Video.bat";
proc.StartInfo.Arguments = string.Format("20");
//proc.StartInfo.CreateNoWindow = true;
proc.StartInfo.WindowStyle = ProcessWindowStyle.Hidden;//这里设置DOS窗口不显

C#d调用外部bat最先出现在Python成神之路

版权声明:
作者:Alex
链接:https://www.techfm.club/p/9462.html
来源:TechFM
文章版权归作者所有,未经允许请勿转载。

THE END
分享
二维码
< <上一篇
下一篇>>