色尼玛亚洲综合影院,亚洲3atv精品一区二区三区,麻豆freexxxx性91精品,欧美在线91

asp.net中調(diào)用winrar實(shí)現(xiàn)壓縮解壓縮的代碼

ASP.NET壓縮文件夾調(diào)用示例:rar("e:/www.jb51.NET/", "e:/www.jb51.NET.rar");
ASP.NET解壓縮rar文件調(diào)用示例:unrar("e:/www.jb51.NET.rar", "e:/");
復(fù)制代碼 代碼如下:
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)用程序路徑名稱(chēng)
/// true表示成功,false表示失敗
public static bool StartApp(string appName)
{
return StartApp(appName, ProcessWindowStyle.Hidden);
}
///
/// 啟動(dòng)外部應(yīng)用程序
///
///應(yīng)用程序路徑名稱(chēng)
///進(jìn)程窗口模式
/// true表示成功,false表示失敗
public static bool StartApp(string appName, ProcessWindowStyle style)
{
return StartApp(appName, null, style);
}
///
/// 啟動(dòng)外部應(yīng)用程序,隱藏程序界面
///
///應(yīng)用程序路徑名稱(chē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)用程序路徑名稱(chē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+");
}

}
}

AspNet技術(shù)asp.net中調(diào)用winrar實(shí)現(xiàn)壓縮解壓縮的代碼,轉(zhuǎn)載需保留來(lái)源!

鄭重聲明:本文版權(quán)歸原作者所有,轉(zhuǎn)載文章僅為傳播更多信息之目的,如作者信息標(biāo)記有誤,請(qǐng)第一時(shí)間聯(lián)系我們修改或刪除,多謝。

主站蜘蛛池模板: 双柏县| 吴旗县| 安平县| 天台县| 宿松县| 濮阳县| 荣昌县| 惠安县| 祁门县| 荣成市| 彭州市| 米脂县| 疏附县| 白山市| 庆元县| 田林县| 景宁| 衡山县| 奉贤区| 西华县| 金华市| 双鸭山市| 白银市| 望城县| 仁怀市| 鱼台县| 南安市| 石屏县| 东阳市| 侯马市| 广安市| 卓尼县| 永顺县| 林西县| 个旧市| 浦城县| 沿河| 大悟县| 舞钢市| 依兰县| 龙江县|