C# .NET 4.5 将多个文件添加到压缩包中
Posted runliuv
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C# .NET 4.5 将多个文件添加到压缩包中相关的知识,希望对你有一定的参考价值。
string zipFilePath = @"d:\test.zip"; string file1 = @"D:\门头照处理\门店照片2018-3-19 wuxl\门店照片\105500035102.jpg"; string file2 = @"D:\门头照处理\门店照片2018-3-19 wuxl\门店照片\105500107146.jpg"; // 创建并添加被压缩文件 using (FileStream zipFileToOpen = new FileStream(zipFilePath, FileMode.Create)) using (ZipArchive archive = new ZipArchive(zipFileToOpen, ZipArchiveMode.Create)) { archive.CreateEntryFromFile(file1, "a.jpg"); archive.CreateEntryFromFile(file2, "b.jpg"); }
-
项目要引用System.IO.Compression,System.IO.Compression.FileSystem
要添加using System.IO.Compression;
以上是关于C# .NET 4.5 将多个文件添加到压缩包中的主要内容,如果未能解决你的问题,请参考以下文章