惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

L
LangChain Blog
酷 壳 – CoolShell
酷 壳 – CoolShell
雷峰网
雷峰网
量子位
V
V2EX
S
SegmentFault 最新的问题
月光博客
月光博客
博客园 - 【当耐特】
Hugging Face - Blog
Hugging Face - Blog
V
Visual Studio Blog
大猫的无限游戏
大猫的无限游戏
T
Tailwind CSS Blog
博客园_首页
博客园 - Franky
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
美团技术团队
Y
Y Combinator Blog
The Cloudflare Blog
C
Check Point Blog
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
腾讯CDC
B
Blog
Stack Overflow Blog
Stack Overflow Blog
P
Proofpoint News Feed

博客园 - 漂失在蓝天下的云

微软自带的sqlserver的jdbc驱动的缺陷及解决方法 SQL Sever中文乱码的分析解决 - 漂失在蓝天下的云 - 博客园 UTF-8乱码解决 在asp.net页面中的一些有关编码的问题 - 漂失在蓝天下的云 - 博客园 在ASP.net页面引用js时的注意事项 - 漂失在蓝天下的云 - 博客园 如何处理提交页面是GB2312编码格式,接收页面是UTF-8格式? - 漂失在蓝天下的云 - 博客园 Asp.Net细节性问题技巧精萃 日期正则表达式 什么是正则表达式 正则表达式之道 让你终身受用的4个经典故事 五个寓言故事令你受益匪浅 C#程序调用外部程序 Asp.NET中运行exe 帮你免于失业的十大软件技术! 网站首页head区代码规范(网页设计师必看) 网站首页head区代码规范(网页设计师必看) 一个不错的页面特效 网页制作代码
调用cmd.exe程序和外部程序(转)
漂失在蓝天下的云 · 2006-10-11 · via 博客园 - 漂失在蓝天下的云

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的命令参数,请参考帮助。