CpioArchive.SaveGzipped
inhoud
[
verbergen
]SaveGzipped(Stream, CpioFormat)
Slaat archief op in de stream met gzip-compressie.
public void SaveGzipped(Stream output, CpioFormat cpioFormat = CpioFormat.OldAscii)
Parameter | Type | Beschrijving |
---|---|---|
output | Stream | Bestemmingsstroom. |
cpioFormat | CpioFormat | Definieert de indeling van de cpio-header. |
Uitzonderingen
uitzondering | voorwaarde |
---|---|
ArgumentNullException | output is niets. |
ArgumentException | output is niet beschrijfbaar. |
Opmerkingen
outputmoet beschrijfbaar zijn.
Voorbeelden
using (FileStream result = File.OpenWrite("result.cpio.gz"))
{
using (FileStream source = File.Open("data.bin", FileMode.Open, FileAccess.Read))
{
using (var archive = new CpioArchive())
{
archive.CreateEntry("entry.bin", source);
archive.SaveGzipped(result);
}
}
}
Zie ook
- enum CpioFormat
- class CpioArchive
- naamruimte Aspose.Zip.Cpio
- montage Aspose.Zip
SaveGzipped(string, CpioFormat)
Slaat archief naar het bestand op pad met gzip-compressie.
public void SaveGzipped(string path, CpioFormat cpioFormat = CpioFormat.OldAscii)
Parameter | Type | Beschrijving |
---|---|---|
path | String | Het pad van het aan te maken archief. Als de opgegeven bestandsnaam naar een bestaand bestand verwijst, wordt dit overschreven. |
cpioFormat | CpioFormat | Definieert de indeling van de cpio-header. |
Voorbeelden
using (FileStream source = File.Open("data.bin", FileMode.Open, FileAccess.Read))
{
using (var archive = new CpioArchive())
{
archive.CreateEntry("entry.bin", source);
archive.SaveGzipped("result.cpio.gz");
}
}
Zie ook
- enum CpioFormat
- class CpioArchive
- naamruimte Aspose.Zip.Cpio
- montage Aspose.Zip