C#: 執(zhí)行批處理文件(*.bat)的方法
當(dāng)前位置:點(diǎn)晴教程→知識(shí)管理交流
→『 技術(shù)文檔交流 』
本文介紹一下在C#中執(zhí)行批處理文件(*.bat)的方法。 實(shí)現(xiàn)代碼如下: static void Main(string[] args) { Process proc = null; try { proc = new Process(); proc.StartInfo.FileName = @"D:\adapters\setup\mybatch.bat"; proc.StartInfo.Arguments = string.Format("10");//this is argument proc.StartInfo.CreateNoWindow = false; proc.Start(); proc.WaitForExit(); } catch (Exception ex) { Console.WriteLine("Exception Occurred :{0},{1}", ex.Message,ex.StackTrace.ToString()); } }
如果要運(yùn)行時(shí)隱藏dos窗口,需使用下面的代碼 proc.StartInfo.UseShellExecute = false; proc.StartInfo.CreateNoWindow = true; 該文章在 2018/1/9 22:59:46 編輯過(guò) |
關(guān)鍵字查詢(xún)
相關(guān)文章
正在查詢(xún)... |