C# 压缩文件 ICSharpCode.SharpZipLib.dll

效果:

代码只能压缩文件夹里面的文件,不能压缩文件夹。

压缩前:

压缩后:

代码:

需要引用ICSharpCode.SharpZipLib.dll

复制代码
public ActionResult Index()
{
    //路径
    string path = "E:/test/xls_Z";
    //调用
    CreateZip(path ,path + ".zip");
}

/// <summary>
/// 压缩文件
/// </summary>
/// <param name="sourceFilePath">文件路径</param>
/// <param name="destinationZipFilePath">压缩后的地址</param>
public static void CreateZip(string sourceFilePath, string destinationZipFilePath)
{
    if (sourceFilePath[sourceFilePath.Length - 1] != System.IO.Path.DirectorySeparatorChar)
        sourceFilePath += System.IO.Path.DirectorySeparatorChar;
    ZipOutputStream zipStream = new ZipOutputStream(System.IO.File.Create(destinationZipFilePath));
    zipStream.SetLevel(6);  // 压缩级别 0-9
    CreateZipFiles(sourceFilePath, zipStream);
    zipStream.Finish();
    zipStream.Close();
}

/// <summary>
/// 递归压缩文件
/// </summary>
/// <param name="sourceFilePath">待压缩的文件或文件夹路径</param>
/// <param name="zipStream">打包结果的zip文件路径(类似 D:\WorkSpace\a.zip),全路径包括文件名和.zip扩展名
/// <param name="staticFile"></param>
private static void CreateZipFiles(string sourceFilePath, ZipOutputStream zipStream)
{
    Crc32 crc = new Crc32();
    string[] filesArray = Directory.GetFileSystemEntries(sourceFilePath);
    foreach (string file in filesArray)
    {
     //如果当前是文件夹,递归
        if (Directory.Exists(file))                     
        {
            CreateZipFiles(file, zipStream);
        }
     //如果是文件,开始压缩
        else                                            
        {
            FileStream fileStream = System.IO.File.OpenRead(file);
            byte[] buffer = new byte[fileStream.Length];
            fileStream.Read(buffer, 0, buffer.Length);
            string tempFile = file.Substring(sourceFilePath.LastIndexOf("\\") + 1);
            ZipEntry entry = new ZipEntry(tempFile);
            entry.DateTime = DateTime.Now;
            entry.Size = fileStream.Length;
            fileStream.Close();
            crc.Reset();
            crc.Update(buffer);
            entry.Crc = crc.Value;
            zipStream.PutNextEntry(entry);
            zipStream.Write(buffer, 0, buffer.Length);
        }
    }
}
复制代码

 

posted @     阅读(6154)  评论(1编辑  收藏  举报
编辑推荐:
· 如何编写易于单元测试的代码
· 10年+ .NET Coder 心语,封装的思维:从隐藏、稳定开始理解其本质意义
· .NET Core 中如何实现缓存的预热?
· 从 HTTP 原因短语缺失研究 HTTP/2 和 HTTP/3 的设计差异
· AI与.NET技术实操系列:向量存储与相似性搜索在 .NET 中的实现
阅读排行:
· 周边上新:园子的第一款马克杯温暖上架
· Open-Sora 2.0 重磅开源!
· 分享 3 个 .NET 开源的文件压缩处理库,助力快速实现文件压缩解压功能!
· Ollama——大语言模型本地部署的极速利器
· DeepSeek如何颠覆传统软件测试?测试工程师会被淘汰吗?
点击右上角即可分享
微信分享提示