调用cmd.exe程序和外部程序(转)

本文介绍了一个C#实用工具类CmdUtility,该类提供了执行CMD命令并获取输出的方法,同时还提供了启动外部Windows应用程序的功能。文章还附带了一个使用System.Diagnostics.Process类来执行WinRAR压缩命令的例子。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >


using System; 
using System.Diagnostics;

namespace ApplyCmd
{
     ///  
     /// CmdUtility 的摘要说明。
     ///  
     public class CmdUtility {

         ///  
         /// 执行cmd.exe命令
         ///  
         /// 命令文本
         /// 命令输出文本
         public static string ExeCommand(string commandText) {
             return ExeCommand(new string []{commandText});
         }

         ///  
         /// 执行多条cmd.exe命令
         ///  
         /// 命令文本数组
         /// 命令输出文本
         public static string ExeCommand(string [] commandTexts) {
             Process p = new Process();
             p.StartInfo.FileName = "cmd.exe";
             p.StartInfo.UseShellExecute = false;
             p.StartInfo.RedirectStandardInput = true;
             p.StartInfo.RedirectStandardOutput = true;
             p.StartInfo.RedirectStandardError = true;
             p.StartInfo.CreateNoWindow = true;
             string strOutput = null;
             try {
                 p.Start();
                 foreach(string item in commandTexts) {
                     p.StandardInput.WriteLine(item);
                 }
                 p.StandardInput.WriteLine("exit");
                 strOutput = p.StandardOutput.ReadToEnd();
                 p.WaitForExit();
                 p.Close();
             } catch(Exception e) {
                 strOutput = e.Message;
             }
             return strOutput;
         }
         
         ///  
         /// 启动外部Windows应用程序,隐藏程序界面
         ///  
         /// 应用程序路径名称
         /// true表示成功,false表示失败
         public static bool StartApp(string appName) {
             return StartApp(appName,ProcessWindowStyle.Hidden);
         }
         
         ///  
         /// 启动外部应用程序
         ///  
         /// 应用程序路径名称
         /// 进程窗口模式
         /// true表示成功,false表示失败
         public static bool StartApp(string appName,ProcessWindowStyle style) {
             return StartApp(appName,null,style);
         }
         ///  
         /// 启动外部应用程序,隐藏程序界面
         ///  
         /// 应用程序路径名称
         /// 启动参数
         /// true表示成功,false表示失败
         public static bool StartApp(string appName,string arguments) {
             return StartApp(appName,arguments,ProcessWindowStyle.Hidden);
         }
         ///  
         /// 启动外部应用程序
         ///  
         /// 应用程序路径名称
         /// 启动参数
         /// 进程窗口模式
         /// true表示成功,false表示失败
         public static bool StartApp(string appName,string arguments,ProcessWindowStyle style) {
             bool blnRst = false;
             Process p = new Process();
             p.StartInfo.FileName = appName;//exe,bat and so on
             p.StartInfo.WindowStyle = style;
             p.StartInfo.Arguments = arguments;
             try {
                 p.Start();
                 p.WaitForExit();
                 p.Close();
                 blnRst = true;
             } catch {
                 
             }
             return blnRst;
         }
     }
}

ps:利用System.Diagnostics.Process来压缩文件或文件夹

string strArg = "a -r   {0} {1}"; 
System.Diagnostics.Process.Start(@"C:/Program Files/WinRAR/rar.exe", String.Format(strArg, txtApp.Text+".rar", txtApp.Text));

strArg为winrar的命令参数,请参考帮助。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值