首页
技术库|站长工具|技术手册|字体库|知识点词汇表| 联系我们|
打开本页的html静态页面
 

主菜单

文章分类

.: .Net技术 .: 问题集锦 .: c#如何调用cmd及如何执行外部程序

  • 全文内容
  • 发表评论
  • 文章点评
  • 文章附件
  • Email文章
  • 打印文章

c#如何调用cmd及如何执行外部程序

点击次数:128 创建日期:8-19-2008 录入:cn-web.com 字体:[ ] 点评:


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 FilesWinRAR ar.exe", String.Format(strArg, txtApp.Text+".rar", txtApp.Text));

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

请文明参与讨论,禁止漫骂攻击。
评论总数:0 [ 查看全部 ] 网友评论
此文章还没有任何评论!
(+5分)
(+4分)
(+3分)
(+2分)
(+1分)
此内容无附件
网站地图 - 知识词汇 - 全文检索 - 广告服务 - 帮助中心 - 联系我们
.:www.cn-web.com
网站技术开发联盟之WEB开发技术知识库
联系人:老韩(QQ:5679551(业务),688464(技术))
晋ICP备07003487号