Windows系统中C#调用WinRAR来压缩和解压缩文件的方法

过程说明都在注释里,我们直接来看代码:
压缩:

using System;

using System.Collections.Generic;

using System.Linq;

using System.Text;

using System.IO;

using ICSharpCode.SharpZipLib.Zip;

using System.Diagnostics;

public class winrar

{
  #region 压缩文件

  /// <summary>

  /// 压缩文件

  /// </summary>

  /// <param name="filesPath">压缩文件及完整路径(D:\abc)</param>

  /// <param name="zipFilePath">压缩包所存完整路径(D:\a.zip或d:\a.rar)</param>

  public static void CreateZipFile(string filesPath, string zipFilePath)

  {

    if (!Directory.Exists(filesPath))

    {

      Console.WriteLine("Cannot find directory '{0}'", filesPath);

      return;

    }

    try

    {

      string[] filenames = Directory.GetFiles(filesPath);

      using (ZipOutputStream s = new ZipOutputStream(File.Create(zipFilePath)))

      {

        s.SetLevel(9); // 压缩级别 0-9

        //s.Password = "123"; //Zip压缩文件密码

        byte[] buffer = new byte[4096]; //缓冲区大小

        foreach (string file in filenames)

        {

          ZipEntry entry = new ZipEntry(Path.GetFileName(file));

          entry.DateTime = DateTime.Now;

          s.PutNextEntry(entry);

          using (FileStream fs = File.OpenRead(file))

          {

            int sourceBytes;

            do

            {

              sourceBytes = fs.Read(buffer, 0, buffer.Length);

              s.Write(buffer, 0, sourceBytes);

            } while (sourceBytes > 0);

          }

        }

        s.Finish();

        s.Close();

      }

    }

    catch (Exception ex)

    {

      AutoCompare.ErrorLog.SaveError(ex, "压缩文件出错!");

    }

  }

  #endregion

  #region 解压文件

  /// <summary>

  /// 解压文件

  /// </summary>

  /// <param name="zipFilePath">解压文件及完整路径(d:\a.zip或d:\a.rar)</param>

  public static void UnZipFile(string zipFilePath)

  {

    if (!File.Exists(zipFilePath))

    {

      Console.WriteLine("Cannot find file '{0}'", zipFilePath);

      return;

    }

    using (ZipInputStream s = new ZipInputStream(File.OpenRead(zipFilePath)))

    {

      ZipEntry theEntry;

      while ((theEntry = s.GetNextEntry()) != null)

      {

        Console.WriteLine(theEntry.Name);

        string directoryName = Path.GetDirectoryName(theEntry.Name);

        string fileName = Path.GetFileName(theEntry.Name);

        // create directory

        if (directoryName.Length > 0)

        {

          Directory.CreateDirectory(directoryName);

        }

        if (fileName != String.Empty)

        {

          using (FileStream streamWriter = File.Create(theEntry.Name))

          {

            int size = 2048;

            byte[] data = new byte[2048];

            while (true)

            {

              size = s.Read(data, 0, data.Length);

              if (size > 0)

              {

                streamWriter.Write(data, 0, size);

              }

              else

              {

                break;

              }

            }

          }

        }

      }

    }

  }

  #endregion

string rarFile=@"C:\Program Files\WinRAR\WinRAR.exe";//winrar之所在的路径,这里找执行文件所在文件夹和"C:\Program Files\WinRAR\WinRAR.exe

 #region RAR压缩文件(支持路径中含有空格)

 /// <summary>

  /// 压缩到.rar

  /// </summary>

  /// <param name="intputPath">输入目录</param>

  /// <param name="outputPath">输出目录</param>

  /// <param name="outputFileName">输出文件名</param>

  public static void CompressRar(string intputPath, string outputPath, string outputFileName)

  {

    //rar 执行时的命令、参数

    string rarCmd;

    //启动进程的参数

    ProcessStartInfo processStartInfo;

    //进程对象

    Process process;

 //命令参数

 rarCmd = " a " + outputFileName + " " + intputPath + " -r -ep1";

 //rar路径

 string rarFile = System.Windows.Forms.Application.StartupPath + @"\rar.exe";

 if (outputPath.IndexOf(' ') > 0 || intputPath.IndexOf(' ') > 0)

 {

  rarCmd = " a " + outputFileName + " \"" + intputPath + "\" -r -ep1";

 }

 if (!File.Exists(System.Windows.Forms.Application.StartupPath + @"\rar.exe"))

 { 

  rarFile=@"C:\Program Files\WinRAR\WinRAR.exe";

 }

    try

    {

      //判断输入目录是否存在

      if (!Directory.Exists(intputPath))

      {

        throw new ArgumentException("CompressRar'arge : inputPath isn't exsit.");

      }

      //创建启动进程的参数

      processStartInfo = new ProcessStartInfo();

      //指定启动文件名

      processStartInfo.FileName = @"C:\Program Files\WinRAR\WinRAR.exe";

      //指定启动该文件时的命令、参数

      processStartInfo.Arguments = rarCmd;

      //指定启动窗口模式:隐藏

      processStartInfo.WindowStyle = ProcessWindowStyle.Hidden;

      //指定压缩后到达路径

      processStartInfo.WorkingDirectory = outputPath;

      //创建进程对象

      process = new Process();

      //指定进程对象启动信息对象

      process.StartInfo = processStartInfo;

      //启动进程

      process.Start();

      //指定进程自行退行为止

      process.WaitForExit();

    }

    catch (Exception ex)

    {

      throw ex;

    }

  }

 #endregion

 #region RAR解压文件(支持路径中含有空格)

 /// <summary>

 /// 解压文件

 /// </summary>

 /// <param name="outputPath">解压到的路径</param>

 /// <param name="inputPath">压缩包所在路径(解压路径需存在)</param>

 /// <param name="inputFileName">压缩包名</param>

 /// <returns></returns>
 public static void DecompressRar(string outputPath, string inputPath, string inputFileName)

 {

 //rar 执行时的命令、参数

 string rarCmd;

 //启动进程的参数

 ProcessStartInfo processStartInfo;

 //进程对象

 Process process;

 //rar路径

 string rarFile =System.Windows.Forms.Application.StartupPath + @"\rar.exe" ;

 //命令参数

 rarCmd = " e " + inputFileName + " " + outputPath + " -r -ep1";

 if (outputPath.IndexOf(' ') > 0 || inputPath.IndexOf(' ') > 0)

 {

  rarCmd = "x -inul -y -o+ -ep1 \"" + inputPath + "\\" + inputFileName + "\" \"" + outputPath+"\"";

 }

 if (!File.Exists(System.Windows.Forms.Application.StartupPath + @"\rar.exe"))

 { 

  rarFile=@"C:\Program Files\WinRAR\WinRAR.exe";

 }

 try

 {

  //创建启动进程的参数

  processStartInfo = new ProcessStartInfo();

  //指定启动文件名

  processStartInfo.FileName = rarFile;

  //指定启动该文件时的命令、参数

  processStartInfo.Arguments = rarCmd;

  //指定启动窗口模式:隐藏

  processStartInfo.WindowStyle = ProcessWindowStyle.Hidden;

  //指定解压后到达路径(文件夹需要存在)

  processStartInfo.WorkingDirectory = inputPath;

  //创建进程对象

  process = new Process();

  //指定进程对象启动信息对象

  process.StartInfo = processStartInfo;

  //启动进程

  process.Start();

  //指定进程自行退行为止

  process.WaitForExit();

  //释放资源

  process.Close();

 }

 catch (Exception ex)

 {

  throw ex;

 }

 }

 #endregion

}

解压:

class UseWinRar
  {
    private string rarExeFile = null;//WinRar.exe路径
    private bool useAble = false;//标志WinRar是否可用 

    public UseWinRar()//构造方法
    {
      rarExeFile = getRarExe();
      useAble = !string.IsNullOrEmpty(rarExeFile);//如果WinRar.exe路径不为空,说明可用
    } 

    public static string getRarExe()//获取WinRar所在磁盘路径
    {
      string rarExe = null;
      RegistryKey regKey = Registry.LocalMachine.OpenSubKey(@"SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\WinRAR.exe");
      if (regKey == null)
      {
        return null;
      }
      rarExe = regKey.GetValue("").ToString();
      regKey.Close();//关闭注册表
      return rarExe;
    } 

    public bool exeRarCmd(string cmd)//执行某个命令
    {
      if (!useAble)
      {
        return false;
      }
      Process process = new Process();//新建一个过程
      ProcessStartInfo startInfo = new ProcessStartInfo(rarExeFile);//新建一个启动信息
      startInfo.Arguments = cmd;//设置启动信息的执行参数
      //startInfo.WorkingDirectory = workDirectory;//设置启动信息的工作目录
      startInfo.WindowStyle = ProcessWindowStyle.Hidden;//设置程序后台运行
      process.StartInfo = startInfo;//设置过程的启动信息
      process.Start();//开始过程
      return true;
    } 

    public bool unZipAll(string zipFile, string targetDirectory)//将指定压缩文件解压到指定目录
    {
      if (! File.Exists(zipFile))
      {
        return false;
      }
      string zipCmd = "x " + zipFile +" "+ targetDirectory + " -y -ibck";//后台解压压缩文件中全部文件到指定目录
      exeRarCmd(zipCmd);//执行解压操作
      return true;
    } 

    public bool unZipToCurrentDirectory(string zipFile)//将压缩文件解压到当前目录
    {
      if (!File.Exists(zipFile))
      {
        return false;
      }
      FileInfo fileInfo = new FileInfo(zipFile);
      return unZipAll(zipFile, fileInfo.DirectoryName);
    }
  } 

Main:
public static void Main()
    {
      UseWinRar rar = new UseWinRar();
      string[] zipFiles = Directory.GetFiles(Environment.CurrentDirectory, "*.zip");//获取所有zip文件路径
      foreach (string zipFile in zipFiles)
      {
        rar.unZipToCurrentDirectory(zipFile);
      }
    } 
(0)

相关推荐

  • C#实现GZip压缩和解压缩入门实例

    主要是因为GZipStream的构造函数中第一个需要传入一个Stream,第二个是指定操作方式:压缩还是解压缩. 当时的疑问点主要有: 1.我传入的Stream是包含未压缩数据的Stream吗?2.我解压时是从一个压缩流中读取数据后再用GZipStream解压吗? 出现以上两点疑问,完全是我将GZipStream的用法理解反了. 其实GZipStream里面存的是已经压缩过的数据流,传入的Stream是作为基础Stream传入,如果要压缩,那你就可以传一个空的Stream进去,如果要解压,就将包

  • C#使用DeflateStream解压缩数据文件的方法

    本文实例讲述了C#使用DeflateStream解压缩数据文件的方法.分享给大家供大家参考.具体分析如下: DeflateStream方法用于从一个流中读取数据,并写入到另一个流.DeflateStream不写入数据到其它类型的资源,比如文件或者内存. DeflateStream在写入另一个流的时候,它会对数据进行压缩和解压缩. 使用DEFLATE压缩数据文件的一般过程: 打开一个现有的文件  打开/创建输出文件  创建减缩对象  逐字节读取源文件,并把它传递给DEFLATE对象  使用defl

  • C#自定义字符串压缩和解压缩的方法

    本文实例讲述了C#自定义字符串压缩和解压缩的方法.分享给大家供大家参考.具体如下: class ZipLib { public static string Zip(string value) { //Transform string into byte[] byte[] byteArray = new byte[value.Length]; int indexBA = 0; foreach (char item in value.ToCharArray()) { byteArray[indexB

  • C#使用WinRar命令进行压缩和解压缩操作的实现方法

    本文实例讲述了C#使用WinRar命令进行压缩和解压缩操作的实现方法.分享给大家供大家参考,具体如下: using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.UI; using System.Web.UI.WebControls; using System.Diagnostics; using System.IO; public partial c

  • asp.net C#实现解压缩文件的方法

    本文实例讲述了asp.net C#实现解压缩文件的方法.一共给大家介绍了三段代码,一个是简单的解压缩单个zip文件,后一个可以解压批量的大量的但需要调用ICSharpCode.SharpZipLib.dll类了,最后一个比较实例可压缩也可以解压缩了分享给大家供大家参考.具体如下: 解压缩单个文件: 复制代码 代码如下: using System.IO; using System.IO.Compression; string sourceFile=@"D:2.zip"; string d

  • C#实现压缩和解压缩的方法示例【Gzip和Zip方式】

    本文实例讲述了C#实现压缩和解压缩的方法.分享给大家供大家参考,具体如下: 使用ICSharpCode.SharpZipLib.dll来压缩/解压(压缩效率比GZip要高一点) public static class ZipUtil { /// <summary> /// 压缩 /// </summary> /// <param name="param"></param> /// <returns></returns&g

  • C#使用GZipStream解压缩数据文件的方法

    本文实例讲述了C#使用GZipStream解压缩数据文件的方法.分享给大家供大家参考.具体分析如下: GZipStream用于从一个流读取数据写入到另一个流,GZipStream不能写入到其它的资源,比如文件或者内存,只能从流到流. GZipStream使用的一般流程如下: 打开一个现有的文件  打开/创建输出文件  创建GZipStream对象  逐字节读源文件,并把它传递到GZipStream  使用GZipStream写入到输出文件流 String sourcefilename = FIL

  • C#实现的文件压缩和解压缩类

    本文实例讲述了C#实现的文件压缩和解压缩类.分享给大家供大家参考.具体分析如下: 这个C#代码包含了几个类,封装了文件压缩和解压缩常用的方法,包括直接通过代码进行压缩,也有调用winrar对文件进行压缩的 using System; using System.IO; using System.Diagnostics; using Microsoft.Win32; using ICSharpCode.SharpZipLib.Checksums; using ICSharpCode.SharpZip

  • c#调用winrar解压缩文件代码分享

    复制代码 代码如下: using Microsoft.Win32;using System.Diagnostics;压缩string the_rar;RegistryKey the_Reg;object the_Obj;string the_Info;ProcessStartInfo the_StartInfo;Process the_Process;try{the_Reg = Registry.ClassesRoot.OpenSubKey(@"Applications\WinRAR.exe\S

  • C#实现rar压缩与解压缩文件的方法

    本文实例讲述了C#实现rar压缩与解压缩文件的方法.分享给大家供大家参考.具体分析如下: 此程序利用 WinRAR 程序对文件进行压缩,命令行语法可参考WinRAR中文帮助. /// 利用 WinRAR 进行压缩 /// </summary> /// <param name="path">将要被压缩的文件夹(绝对路径)</param> /// <param name="rarPath">压缩后的 .rar 的存放目录(

  • C# 利用ICSharpCode.SharpZipLib实现在线压缩和解压缩

    压缩包制作也是很多项目中需要用到的功能.比如有大量的文件(假设有10000个)需要上传,1个1个的上传似乎不太靠谱(靠,那得传到什么时候啊?),这时我们可以制作一个压缩包zip,直接传这个文件到服务器端,然后在服务器目录解压,释放里面的文件. 这里我们选用ICSharpCode.SharpZipLib这个类库来实现我们的需求. 下载地址:http://icsharpcode.github.io/SharpZipLib/ 该组件支持.NET 1.1, .NET 2.0 (3.5, 4.0), .N

  • C#中使用WinRAR实现加密压缩及解压缩文件

    本次示例主要实现: 1.压缩文件夹及其下文件 2.压缩文件夹下文件 3.压缩文件夹及其下文件为rar 还是 zip 4.解压缩 5.加密压缩及解加密压缩 ----------- 示例代码如下: protected void Button1_Click(object sender, EventArgs e) { string strtxtPath = "C://freezip//free.txt"; string strzipPath = "C://freezip//free.

  • C#文件流进行压缩和解压缩的方法

    本文实例讲述了C#文件流进行压缩和解压缩的方法.分享给大家供大家参考.具体实现方法如下: using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.IO; using System.IO.Compression; using System.Linq; using System.Text; usi

随机推荐