CpioArchive.SaveXzCompressed

SaveXzCompressed(Stream, CpioFormat, XzArchiveSettings)

使用 xz 压缩将存档保存到流中。

public void SaveXzCompressed(Stream output, CpioFormat cpioFormat = CpioFormat.OldAscii, 
    XzArchiveSettings settings = null)
范围类型描述
outputStream目标流。
cpioFormatCpioFormat定义 cpio 标头格式。
settingsXzArchiveSettings一组设置特定的 xz 存档:字典大小、块大小、检查类型。

例外

例外(健康)状况
ArgumentNullExceptionoutput一片空白。
ArgumentExceptionoutput不可写。

评论

output流必须是可写的。

例子

using (FileStream result = File.OpenWrite("result.cpio.xz"))
{
    using (FileStream source = File.Open("data.bin", FileMode.Open, FileAccess.Read))
    {
        using (var archive = new CpioArchive())
        {
            archive.CreateEntry("entry.bin", source);
            archive.SaveXzCompressed(result);
        }
    }
}

也可以看看


SaveXzCompressed(string, CpioFormat, XzArchiveSettings)

将压缩包按路径保存到 xz 压缩路径下。

public void SaveXzCompressed(string path, CpioFormat cpioFormat = CpioFormat.OldAscii, 
    XzArchiveSettings settings = null)
范围类型描述
pathString要创建的存档的路径。如果指定的文件名指向一个现有文件,它将被覆盖。
cpioFormatCpioFormat定义 cpio 标头格式。
settingsXzArchiveSettings一组设置特定的 xz 存档:字典大小、块大小、检查类型。

例子

using (FileStream source = File.Open("data.bin", FileMode.Open, FileAccess.Read))
{
    using (var archive = new CpioArchive())
    {
        archive.CreateEntry("entry.bin", source);
        archive.SaveXzCompressed("result.cpio.xz");
    }
}

也可以看看