压缩解压缩文件(zip格式)

using System;
using System.Collections.Generic;
using System.IO;
using ICSharpCode.SharpZipLib.Zip;

namespace TestConsole
{
    internal class Program
    {
        private static void Main()
        {
            //CreateZipFile(@"d:\", @"d:\a.zip");
            UnZipFile(@"E:\我的桌面.zip");
            Console.Read();
        }

        /// <summary>
        ///     压缩文件为zip包
        /// </summary>
        /// <param name="filesPath"></param>
        /// <param name="zipFilePath"></param>
        private static bool CreateZipFile(string filesPath, string zipFilePath)
        {
            if (!Directory.Exists(filesPath))
            {
                return false;
            }

            try
            {
                string[] filenames = Directory.GetFiles(filesPath);
                using (var s = new ZipOutputStream(File.Create(zipFilePath)))
                {
                    s.SetLevel(9); // 压缩级别 0-9
                    //s.Password = "123"; //Zip压缩文件密码
                    var buffer = new byte[4096]; //缓冲区大小
                    foreach (string file in filenames)
                    {
                        var 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();
                }
                return true;
            }
            catch (Exception ex)
            {
                Console.WriteLine("Exception during processing {0}", ex);
            }
            return false;
        }

        /// <summary>
        ///     文件解压(zip格式)
        /// </summary>
        /// <param name="zipFilePath"></param>
        /// <returns></returns>
        private static List<FileInfo> UnZipFile(string zipFilePath)
        {
            var files = new List<FileInfo>();
            var zipFile = new FileInfo(zipFilePath);
            if (!File.Exists(zipFilePath))
            {
                return files;
            }
            using (var zipInputStream = new ZipInputStream(File.OpenRead(zipFilePath)))
            {
                ZipEntry theEntry;
                while ((theEntry = zipInputStream.GetNextEntry()) != null)
                {
                    if (zipFilePath != null)
                    {
                        string dir = Path.GetDirectoryName(zipFilePath);
                        if (dir != null)
                        {
                            string dirName = Path.Combine(dir, zipFile.Name.Replace(zipFile.Extension, ""));
                            string fileName = Path.GetFileName(theEntry.Name);

                            if (!string.IsNullOrEmpty(dirName))
                            {
                                if (!Directory.Exists(dirName))
                                {
                                    Directory.CreateDirectory(dirName);
                                }
                            }
                            if (!string.IsNullOrEmpty(fileName))
                            {
                                string filePath = Path.Combine(dirName, theEntry.Name);
                                using (FileStream streamWriter = File.Create(filePath))
                                {
                                    var data = new byte[2048];
                                    while (true)
                                    {
                                        int size = zipInputStream.Read(data, 0, data.Length);
                                        if (size > 0)
                                        {
                                            streamWriter.Write(data, 0, size);
                                        }
                                        else
                                        {
                                            break;
                                        }
                                    }
                                }
                                files.Add(new FileInfo(filePath));
                            }
                        }
                    }
                }
            }
            return files;
        }
    }
}
        /// <summary>
        ///     文件解压(Rar格式)
        /// </summary>
        /// <param name="rarFilePath"></param>
        /// <returns></returns>
        public static List<FileInfo> UnRarFile(string rarFilePath)
        {
            var files = new List<FileInfo>();
            var fileInput = new FileInfo(rarFilePath);
            if (fileInput.Directory != null)
            {
                string dirName = Path.Combine(fileInput.Directory.FullName,
                                              fileInput.Name.Replace(fileInput.Extension, ""));

                if (!string.IsNullOrEmpty(dirName))
                {
                    if (!Directory.Exists(dirName))
                    {
                        Directory.CreateDirectory(dirName);
                    }
                }
                dirName = dirName.EndsWith("\\") ? dirName : dirName + "\\"; //最后这个斜杠不能少!
                string shellArguments = string.Format("x -o+ {0} {1}", rarFilePath, dirName);
                using (var unrar = new Process())
                {
                    unrar.StartInfo.FileName = @"C:\Program Files\WinRAR\WinRAR.exe"; //WinRar安装路径!
                    unrar.StartInfo.Arguments = shellArguments; //隐藏rar本身的窗口
                    unrar.StartInfo.WindowStyle = ProcessWindowStyle.Hidden;
                    unrar.Start();
                    unrar.WaitForExit(); //等待解压完成
                    unrar.Close();
                }
                var dir = new DirectoryInfo(dirName);
                files.AddRange(dir.GetFiles());
            }
            return files;
        }
        ///// <summary>
        ///// 文件解压2(rar格式)使用SharpCompress组件 需.net 3.5以上才支持!
        ///// </summary>
        ///// <param name="rarFilePath"></param>
        ///// <returns></returns>
        //private static List<FileInfo> UnRarFile(string rarFilePath)
        //{
        //    var files = new List<FileInfo>();
        //    if (File.Exists(rarFilePath))
        //    {
        //        var fileInput = new FileInfo(rarFilePath);
        //        using (Stream stream = File.OpenRead(rarFilePath))
        //        {
        //            var reader = ReaderFactory.Open(stream);
        //            if (fileInput.Directory != null)
        //            {
        //                string dirName = Path.Combine(fileInput.Directory.FullName, fileInput.Name.Replace(fileInput.Extension, ""));

        //                if (!string.IsNullOrEmpty(dirName))
        //                {
        //                    if (!Directory.Exists(dirName))
        //                    {
        //                        Directory.CreateDirectory(dirName);
        //                    }
        //                }
        //                while (reader.MoveToNextEntry())
        //                {
        //                    if (!reader.Entry.IsDirectory)
        //                    {
        //                        reader.WriteEntryToDirectory(dirName, ExtractOptions.ExtractFullPath | ExtractOptions.Overwrite);
        //                        files.Add(new FileInfo(reader.Entry.FilePath));
        //                    }
        //                }
        //            }
        //        }
        //    }
        //    return files;
        //}
时间: 2025-01-01 14:53:52

压缩解压缩文件(zip格式)的相关文章

如何用CZip/CUnzip类压缩/解压缩文件

本文介绍如何用CZip/CUnzip类压缩/解压缩文件,这个类使用gzip GNU源代码(gzip-1.2.4a).这是个免费软件,在GUN通用公共许可证(General Public License)条款下可以分发及修改此软件,关于这个通用公共许可证的详细条款请参考: http://www.vckbase.com/vckbase/uniondocs/gungpl.htm 目标动态库输出两个类: CZip(用于压缩文件) CUnzip (用于解压缩文件) 首先用文件名建立CZip 或 CUnzi

详解linux下tar压缩解压缩文件夹的命令与参数_Linux

前言 tar在linux上是常用的打包.压缩.加压缩工具,他的参数很多,这篇文章仅仅列举常用的压缩与解压缩参数,下面直接先上三个常用命令,一起来看看吧 1.压缩当前目录下文件夹/文件test到test.tar.gz: tar -zcvf test.tar.gz test 2.解压缩当前目录下的file.tar.gz到file: tar -zxvf file.tar.gz 参数详解 五个命令中必选一个      -c: 建立压缩档案      -x:解压      -t:查看内容      -r:

Qt之zip压缩/解压缩(QuaZIP)

简述 QuaZIP是使用Qt/C++对ZLIB进行简单封装的用于压缩及解压缩ZIP的开源库.适用于多种平台,利用它可以很方便的将单个或多个文件打包为zip文件,且打包后的zip文件可以通过其它工具打开. Qt中提供了qCompress/qUncompress来进行文件的压缩与解压,但存在两个问题: 无法很好地压缩/解压缩文件夹. 只能将一个文件压缩为某种格式,压缩后的文件无法通过其它解压工具打开(如:7zip,或WinRAR),只能通过qUncompress解压读取,也就是说qCompress生

Qt之QuaZIP(zip压缩/解压缩)

简述 QuaZIP是使用Qt/C++对ZLIB进行简单封装的用于压缩及解压缩ZIP的开源库.适用于多种平台,利用它可以很方便的将单个或多个文件打包为zip文件,且打包后的zip文件可以通过其它工具打开. Qt中提供了qCompress/qUncompress来进行文件的压缩与解压,但存在两个问题: 无法很好地压缩/解压缩文件夹. 只能将一个文件压缩为某种格式,压缩后的文件无法通过其它解压工具打开(如:7zip,或WinRAR),只能通过qUncompress解压读取,也就是说qCompress生

zip格式的byte[]数组 解压缩

问题描述 zip格式的byte[]数组解压缩,不能使用.NET4.5的ZipArchive类.我们服务器是.NET3.5版本.流不能保存到本地再从本地读取,要从zip格式的byte[]里直接读取出解压缩后的数据.编码头为8075.GZipStream或者DeflateStream都无法实现,最好不引用插件 解决方案 解决方案二:ICSharpCode.SharpZipLib.dll这个是开源的不过好像只免费许可以dll文件的方式使用商业项目要直接使用源码好像还是要花钱解决方案三:最好不引用插件,

Linux下的压缩解压缩命令详解

linux zip命令 zip -r myfile.zip ./*将当前目录下的所有文件和文件夹全部压缩成myfile.zip文件,-r表示递归压缩子目录下所有文件. 2.unzipunzip -o -d /home/sunny myfile.zip把myfile.zip文件解压到 /home/sunny/-o:不提示的情况下覆盖文件:-d:-d /home/sunny 指明将文件解压缩到/home/sunny目录下: 3.其他zip -d myfile.zip smart.txt删除压缩文件中

liunx之zip格式的解压命令

zip -r myfile.zip ./* 将当前目录下的所有文件和文件夹全部压缩成myfile.zip文件,-r表示递归压缩子目录下所有文件. 2.unzip unzip -o -d /home/sunny myfile.zip 把myfile.zip文件解压到 /home/sunny/ -o:不提示的情况下覆盖文件: -d:-d /home/sunny 指明将文件解压缩到/home/sunny目录下: 3.其他 zip -d myfile.zip smart.txt 删除压缩文件中smart

android开发之zip文件压缩解压缩

 代码如下 复制代码 //----------------- DirTraversal.java package com.once; import java.io.File; import java.util.ArrayList; import java.util.LinkedList; /** * 文件夹遍历 * @author once * */ public class DirTraversal { //no recursion public static LinkedList<File>

利用Java实现zip压缩/解压缩

压缩 利用Java实现zip压缩/解压缩(作者: 2000年07月06日 13:30) 由于网络带宽有限,所以数据文件的压缩有利于数据在Internet上的快速传输,同时也节 省服务器的外存空间. Java 1.1实现了I/O数据流与网络数据流的单一接口,因此数据的压缩.网络传输和解 压缩的实现比较容易,下面介绍利用ZipEntry.ZipInputStream和ZipOutputStream三个Java 类实现zip数据压缩方式的编程方法. zip压缩文件结构:一个zip文件由多个entry组