C#运行批处理或者bat文件并且得到输出
我的一个爱好,就是收集网上共享的一些功能型代码。收集下来,用的时候,就非常方便了。这一段小程序,可以用来直接运行批处理(cmd)语句或者批处理文件(*.bat|*.com)等,并且可以获得批处理语句运行后的返回文字。很好,很强大。除了可以运行cmd之外,也可以直接运行exe或者其他程序,设置是否以后台静默的方式运行。主要采用的技术就是Process。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 | protected static void RunCmd(String cmd, Boolean showWindow, Boolean waitForExit) { WriteLine( "RunCmd " + cmd); var p = new Process(); var si = new ProcessStartInfo(); var path = Environment.SystemDirectory; path = Path.Combine(path, @"cmd.exe" ); si.FileName = path; if (!cmd.StartsWith( @"/" )) cmd = @"/c " + cmd; si.Arguments = cmd; si.UseShellExecute = false ; si.CreateNoWindow = !showWindow; si.RedirectStandardOutput = true ; si.RedirectStandardError = true ; p.StartInfo = si; p.Start(); if (waitForExit) { p.WaitForExit(); var str = p.StandardOutput.ReadToEnd(); if (!String.IsNullOrEmpty(str)) WriteLine(str.Trim( new Char[] { '\r' , '\n' , '\t' }).Trim()); str = p.StandardError.ReadToEnd(); if (!String.IsNullOrEmpty(str)) WriteLine(str.Trim( new Char[] { '\r' , '\n' , '\t' }).Trim()); } } |
本代码来自NewLife组件。新生命网站:http://www.newlifex.com/
欢迎来到:码农很忙 。
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】博客园携手 AI 驱动开发工具商 Chat2DB 推出联合终身会员
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步