最新文章专题视频专题问答1问答10问答100问答1000问答2000关键字专题1关键字专题50关键字专题500关键字专题1500TAG最新视频文章视频文章20视频文章30视频文章40视频文章50视频文章60 视频文章70视频文章80视频文章90视频文章100视频文章120视频文章140 视频2关键字专题关键字专题tag2tag3文章专题文章专题2文章索引1文章索引2文章索引3文章索引4文章索引5123456789101112131415文章专题3
当前位置: 首页 - 科技 - 知识百科 - 正文

asp.net中调用winrar实现压缩解压缩的代码

来源:懂视网 责编:小采 时间:2020-11-27 22:45:02
文档

asp.net中调用winrar实现压缩解压缩的代码

asp.net中调用winrar实现压缩解压缩的代码:asp.net压缩文件夹调用示例:rar(e:/www.gxlcms.com/, e:/www.gxlcms.com.rar); asp.net解压缩rar文件调用示例:unrar(e:/www.gxlcms.com.rar, e:/); 代码如下:using System; using System.Collectio
推荐度:
导读asp.net中调用winrar实现压缩解压缩的代码:asp.net压缩文件夹调用示例:rar(e:/www.gxlcms.com/, e:/www.gxlcms.com.rar); asp.net解压缩rar文件调用示例:unrar(e:/www.gxlcms.com.rar, e:/); 代码如下:using System; using System.Collectio

asp.net压缩文件夹调用示例:rar("e:/www.gxlcms.com/", "e:/www.gxlcms.com.rar");
asp.net解压缩rar文件调用示例:unrar("e:/www.gxlcms.com.rar", "e:/");
代码如下:


using System;
using System.Collections.Generic;
using System.Text;
using System.Diagnostics;

namespace BLL
{
public class CmdUtil
{
///
/// 执行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();
//strOutput = Encoding.UTF8.GetString(Encoding.Default.GetBytes(strOutput));
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;
}

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+");
}

}
}

声明:本网页内容旨在传播知识,若有侵权等问题请及时与本网联系,我们将在第一时间删除处理。TEL:177 7030 7066 E-MAIL:11247931@qq.com

文档

asp.net中调用winrar实现压缩解压缩的代码

asp.net中调用winrar实现压缩解压缩的代码:asp.net压缩文件夹调用示例:rar(e:/www.gxlcms.com/, e:/www.gxlcms.com.rar); asp.net解压缩rar文件调用示例:unrar(e:/www.gxlcms.com.rar, e:/); 代码如下:using System; using System.Collectio
推荐度:
标签: 解压 代码 压缩
  • 热门焦点

最新推荐

猜你喜欢

热门推荐

专题
Top