从文件夹中的所有文件创建zip文件
本文关键字:文件创建 zip 文件 文件夹 | 更新日期: 2023-09-27 18:09:01
我试图从文件夹中的所有文件创建一个zip文件,但无法在网上找到任何相关的片段。我想做这样的事情:
DirectoryInfo dir = new DirectoryInfo("somedir path");
ZipFile zip = new ZipFile();
zip.AddFiles(dir.getfiles());
zip.SaveTo("some other path");
任何帮助都非常感谢。
edit:我只想从一个文件夹中压缩文件,而不是它的子文件夹。
在你的项目中引用System.IO.Compression和System.IO.Compression. filesystem
using System.IO.Compression;
string startPath = @"c:'example'start";//folder to add
string zipPath = @"c:'example'result.zip";//URL for your ZIP file
ZipFile.CreateFromDirectory(startPath, zipPath, CompressionLevel.Fastest, true);
string extractPath = @"c:'example'extract";//path to extract
ZipFile.ExtractToDirectory(zipPath, extractPath);
只使用文件,使用:
//Creates a new, blank zip file to work with - the file will be
//finalized when the using statement completes
using (ZipArchive newFile = ZipFile.Open(zipName, ZipArchiveMode.Create))
{
foreach (string file in Directory.GetFiles(myPath))
{
newFile.CreateEntryFromFile(file, System.IO.Path.GetFileName(file));
}
}
在你的项目中引用System.IO.Compression
和System.IO.Compression.FileSystem
,你的代码可以是这样的:
string startPath = @"some path";
string zipPath = @"some other path";
var files = Directory.GetFiles(startPath);
using (FileStream zipToOpen = new FileStream(zipPath, FileMode.Open))
{
using (ZipArchive archive = new ZipArchive(zipToOpen, ZipArchiveMode.Create))
{
foreach (var file in files)
{
archive.CreateEntryFromFile(file, file);
}
}
}
但在某些文件夹中,您可能会遇到权限问题。
要使您的zip文件在UNIX系统上可移植,您应该注意:
- 压缩。Unix权限的ZipFile支持
var entry = newFile.CreateEntryFromFile(file, file);
entry.ExternalAttributes |= (Convert.ToInt32("644", 8) << 16);
不需要循环。对于VS2019 + .NET FW 4.7+做了这个…
- 在管理Nuget包浏览中找到ZipFile,或者使用
然后使用:
使用System.IO.Compression;
作为一个例子,下面的代码片段将打包和解包一个目录(使用false来避免打包子目录)
string zippedPath = "c:''mydir"; // folder to add
string zipFileName = "c:''temp''therecipes.zip"; // zipfile to create
string unzipPath = "c:''unpackedmydir"; // URL for ZIP file unpack
ZipFile.CreateFromDirectory(zippedPath, zipFileName, CompressionLevel.Fastest, true);
ZipFile.ExtractToDirectory(zipFileName, unzipPath);