最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

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

 更新時(shí)間:2008年09月10日 01:07:55   作者:  
asp.net壓縮解壓縮,需要服務(wù)器安裝WinRar,并且把Rar.exe拷貝到網(wǎng)站根目錄。這樣我們就可以方面的執(zhí)行壓縮解壓縮了。

asp.net壓縮文件夾調(diào)用示例:rar("e:/www.fzitv.net/", "e:/www.fzitv.net.rar");
asp.net解壓縮rar文件調(diào)用示例:unrar("e:/www.fzitv.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)用程序路徑名稱
/// 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)文章

最新評(píng)論

长乐市| 南雄市| 西安市| 河东区| 本溪| 土默特右旗| 聂荣县| 桦南县| 兰州市| 锦州市| 大同县| 颍上县| 济阳县| 筠连县| 理塘县| 金塔县| 吐鲁番市| 镇江市| 颍上县| 华池县| 汨罗市| 汶上县| 莒南县| 金门县| 苍南县| 苏尼特左旗| 平南县| 伊川县| 金溪县| 沁源县| 宝丰县| 神木县| 南充市| 洪江市| 盖州市| 衡南县| 海宁市| 濮阳市| 望谟县| 德令哈市| 从江县|