CpioArchive.SaveXzCompressed

SaveXzCompressed(Stream, CpioFormat, XzArchiveSettings)

Speichert das Archiv mit xz-Komprimierung im Stream.

public void SaveXzCompressed(Stream output, CpioFormat cpioFormat = CpioFormat.OldAscii, 
    XzArchiveSettings settings = null)
ParameterTypBeschreibung
outputStreamZielstrom.
cpioFormatCpioFormatDefiniert das cpio-Header-Format.
settingsXzArchiveSettingsEinstellungssatz für bestimmte xz-Archive: Wörterbuchgröße, Blockgröße, Überprüfungstyp.

Ausnahmen

AusnahmeBedingung
ArgumentNullExceptionoutput ist Null.
ArgumentExceptionoutput ist nicht beschreibbar.

Bemerkungen

outputDer Stream muss beschreibbar sein.

Beispiele

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);
        }
    }
}

Siehe auch


SaveXzCompressed(string, CpioFormat, XzArchiveSettings)

Speichert das Archiv Pfad für Pfad mit xz-Komprimierung.

public void SaveXzCompressed(string path, CpioFormat cpioFormat = CpioFormat.OldAscii, 
    XzArchiveSettings settings = null)
ParameterTypBeschreibung
pathStringDer Pfad des zu erstellenden Archivs. Wenn der angegebene Dateiname auf eine vorhandene Datei verweist, wird diese überschrieben.
cpioFormatCpioFormatDefiniert das cpio-Header-Format.
settingsXzArchiveSettingsEinstellungssatz für bestimmte xz-Archive: Wörterbuchgröße, Blockgröße, Überprüfungstyp.

Beispiele

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");
    }
}

Siehe auch