asp.net中調(diào)用winrar實(shí)現(xiàn)壓縮解壓縮的代碼
asp.net壓縮文件夾調(diào)用示例:rar("e:/www.dhdzp.com/", "e:/www.dhdzp.com.rar");
asp.net解壓縮rar文件調(diào)用示例:unrar("e:/www.dhdzp.com.rar", "e:/");
using System;
using System.Collections.Generic;
using System.Text;
using System.Diagnostics;
namespace BLL
{
public class CmdUtil
{
///
/// 執(zhí)行cmd.exe命令
///
///命令文本
/// 命令輸出文本
public static string ExeCommand(string commandText)
{
return ExeCommand(new string[] { commandText });
}
///
/// 執(zhí)行多條cmd.exe命令
///
///命令文本數(shù)組
/// 命令輸出文本
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();
//strOutput = Encoding.UTF8.GetString(Encoding.Default.GetBytes(strOutput));
p.WaitForExit();
p.Close();
}
catch (Exception e)
{
strOutput = e.Message;
}
return strOutput;
}
///
/// 啟動(dòng)外部Windows應(yīng)用程序,隱藏程序界面
///
///應(yīng)用程序路徑名稱
/// true表示成功,false表示失敗
public static bool StartApp(string appName)
{
return StartApp(appName, ProcessWindowStyle.Hidden);
}
///
/// 啟動(dòng)外部應(yīng)用程序
///
///應(yīng)用程序路徑名稱
///進(jìn)程窗口模式
/// true表示成功,false表示失敗
public static bool StartApp(string appName, ProcessWindowStyle style)
{
return StartApp(appName, null, style);
}
///
/// 啟動(dòng)外部應(yīng)用程序,隱藏程序界面
///
///應(yīng)用程序路徑名稱
///啟動(dòng)參數(shù)
/// true表示成功,false表示失敗
public static bool StartApp(string appName, string arguments)
{
return StartApp(appName, arguments, ProcessWindowStyle.Hidden);
}
///
/// 啟動(dòng)外部應(yīng)用程序
///
///應(yīng)用程序路徑名稱
///啟動(dòng)參數(shù)
///進(jìn)程窗口模式
/// 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;
}
public static void Rar(string s, string d)
{
ExeCommand(System.Web.HttpContext.Current.Server.MapPath("~/rar.exe") + " a \"" + d + "\" \"" + s + "\" -ep1");
}
public static void UnRar(string s, string d)
{
ExeCommand(System.Web.HttpContext.Current.Server.MapPath("~/rar.exe") + " x \"" + s + "\" \"" + d + "\" -o+");
}
}
}
相關(guān)文章
win7系統(tǒng)下 vs2010 調(diào)式就關(guān)閉要重啟處理方法
最近經(jīng)常出現(xiàn)只要一使用vs2010進(jìn)行調(diào)試,就提示關(guān)閉并要重啟,好煩,度娘了半天,總結(jié)下來(lái)解決方法,親測(cè)可用哦。2014-08-08
.Net Core 實(shí)現(xiàn)圖片驗(yàn)證碼的實(shí)現(xiàn)示例
這篇文章主要介紹了.Net Core 實(shí)現(xiàn)圖片驗(yàn)證碼的實(shí)現(xiàn)示例,文中通過(guò)示例代碼介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友們下面隨著小編來(lái)一起學(xué)習(xí)學(xué)習(xí)吧2020-03-03
asp.net 生成數(shù)字和字母組合的隨機(jī)數(shù)
asp.net下生成數(shù)字跟字母組合的隨機(jī)數(shù),提高驗(yàn)證安全。2009-03-03
asp.net 數(shù)據(jù)類型轉(zhuǎn)換類代碼
asp.net 數(shù)據(jù)類型轉(zhuǎn)換類代碼,需要的朋友可以參考下2012-06-06
DataList綁定到Row[]行集合的問(wèn)題的方法
DataList綁定到Row[]行集合的問(wèn)題的方法...2007-09-09
asp.net ext treepanel 動(dòng)態(tài)加載XML的實(shí)現(xiàn)方法
當(dāng)你在asp.net下面 使用Ext TreePanel直接加載服務(wù)器上XML文件會(huì)出現(xiàn)樹不能顯示,樹據(jù)不能正確加載的問(wèn)題。2008-10-10

