我是靠谱客的博主 简单小兔子,最近开发中收集的这篇文章主要介绍C# 读取批处理文件(.bat)执行结果到程序显示,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

        public static string ExcuteBatFile(string batPath, ref string errMsg)
        {
            if (errMsg == null) throw new ArgumentNullException("errMsg");
            string output;
            using (Process process = new Process())
            {
                FileInfo file = new FileInfo(batPath);
                if (file.Directory != null)
                {
                    process.StartInfo.WorkingDirectory = file.Directory.FullName;
                }
                process.StartInfo.FileName = batPath;
                process.StartInfo.RedirectStandardOutput = true;
                process.StartInfo.RedirectStandardError = true;
                process.StartInfo.UseShellExecute = false;
                process.StartInfo.CreateNoWindow = true;
                process.Start();
                process.WaitForExit();
                output = process.StandardOutput.ReadToEnd();
                errMsg = process.StandardError.ReadToEnd();
            }
            return output;
        }

使用方法:

var bat = System.Threading.Thread.GetDomain().BaseDirectory + "temp.bat";
string path = bat;
string errMsg = string.Empty;
string output = ExcuteBatFile(path, ref errMsg);

最后

以上就是简单小兔子为你收集整理的C# 读取批处理文件(.bat)执行结果到程序显示的全部内容,希望文章能够帮你解决C# 读取批处理文件(.bat)执行结果到程序显示所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(60)

评论列表共有 0 条评论

立即
投稿
返回
顶部