如何使用 C# 将 CAB 转换为 TAR
首先,您需要在 C# 项目中获取并引用 Aspose.Zip 库。您通常可以从 Aspose 网站下载它或使用 NuGet 包(如果有)。 包管理器,搜索 Aspose.ZIP 并安装。您还可以从包管理器控制台使用以下命令。
使用 Visual Studio 包管理 NuGet 包
包管理器控制台命令:
PM> Install-Package Aspose.Zip
通过 C# 将 CAB 转换为 TAR 的步骤
Convertation from CAB to TAR consist of following steps:
- Extract archive to intermediate storage
- Compress extracted data to desired format
系统要求
Before running the conversion example code, make sure that you have the following prerequisites.
- Microsoft Windows or a compatible OS with .NET Framework, Mono and COM Interop.
- Development environment like Microsoft Visual Studio.
- Aspose.Tasks for .NET DLL referenced in your project.
从 CAB 转换为 TAR 的示例代码
从 CAB 格式转换为各种其他格式的过程涉及一系列步骤。通常,CAB 存档包含多个记录或文件。要完成转换为 GZ (Gzip)、LZ (Lzip)、Z (Unix Compress)、XZ (XZ Utils) 和 BZ2 (Bzip2) 等格式,常用的方法是首先将内容捆绑到 TAR(磁带)中存档)格式。这种方法让人想起 Linux 环境中的常见做法。
在此转换过程中,CAB 存档中的每个单独文件或记录最初都会合并到单个 TAR 存档中。该 TAR 存档充当这些文件的容器,完整保留其原始结构和元数据。一旦数据被封装在 TAR 存档中,应用各种压缩算法和格式就变得更加方便。
人们偏爱 TAR 作为中间格式,因为它的简单性和跨各种类 Unix 操作系统的广泛兼容性。它提供了一种将文件分组在一起的简单方法,而无需直接应用压缩。 TAR打包完成后,可以对TAR存档进行后续压缩操作,生成所需的输出格式,例如GZ、LZ、Z、XZ或BZ2。
从 CAB 转换为 TAR - C#:
using (TarArchive tarArchive = new TarArchive())
{
using (CabArchive cabArchive = new CabArchive("archive.cab"))
{
for (int i = 0; i < cabArchive.Entries.Count; i++)
{
var ms = new MemoryStream();
cabArchive.Entries[i].Extract(ms);
ms.Seek(0, SeekOrigin.Begin);
tarArchive.CreateEntry(cabArchive.Entries[i].Name.Replace('\\', '/'), ms);
}
}
tarArchive.Save("output.tar");
}
将 CAB 转换为 TAR 的免费应用程序
查看我们的CAB 到 TAR 转换的现场演示,具有以下优势
一个可靠的Aspose.ZIP库,可以压缩、提取、加密、解密、转换和合并档案。 Aspose.ZIP for .NET API 允许操作各种存档类型,而无需以最少的编码工作进入压缩文件格式的底层复杂性。