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的命令參數,請參考說明。