如何使用 C# 将 CAB 转换为 CPIO

首先,您需要在 C# 项目中获取并引用 Aspose.Zip 库。您通常可以从 Aspose 网站下载它或使用 NuGet 包(如果有)。 包管理器,搜索 Aspose.ZIP 并安装。您还可以从包管理器控制台使用以下命令。

使用 Visual Studio 包管理 NuGet 包

包管理器控制台命令:

PM> Install-Package Aspose.Zip

通过 C# 将 CAB 转换为 CPIO 的步骤

Convertation from CAB to CPIO 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 转换为 CPIO 的示例代码

从 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 转换为 CPIO - C#:

    using (CpioArchive tarArchive = new CpioArchive())
    {
        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, ms);
            }
        }

        tarArchive.Save("output.cpio");
    }



将 CAB 转换为 CPIO 的免费应用程序

查看我们的CAB 到 CPIO 转换的现场演示,具有以下优势


一个可靠的Aspose.ZIP库,可以压缩、提取、加密、解密、转换和合并档案。 Aspose.ZIP for .NET API 允许操作各种存档类型,而无需以最少的编码工作进入压缩文件格式的底层复杂性。

其他支持的 CAB 转换

您还可以将 CAB 转换为许多其他文件格式,包括下面列出的几种。