CpioArchive.SaveGzipped
محتويات
[
يخفي
]SaveGzipped(Stream, CpioFormat)
لحفظ الأرشيف في الدفق بضغط gzip .
public void SaveGzipped(Stream output, CpioFormat cpioFormat = CpioFormat.OldAscii)
معامل | يكتب | وصف |
---|---|---|
output | Stream | تيار الوجهة. |
cpioFormat | CpioFormat | يحدد تنسيق رأس cpio. |
استثناءات
استثناء | حالة |
---|---|
ArgumentNullException | output باطل. |
ArgumentException | output غير قابل للكتابة. |
ملاحظات
outputيجب أن يكون قابلاً للكتابة.
أمثلة
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);
}
}
}
أنظر أيضا
- enum CpioFormat
- class CpioArchive
- مساحة الاسم Aspose.Zip.Cpio
- المجسم Aspose.Zip
SaveGzipped(string, CpioFormat)
يحفظ الأرشيف إلى الملف عن طريق المسار بضغط gzip .
public void SaveGzipped(string path, CpioFormat cpioFormat = CpioFormat.OldAscii)
معامل | يكتب | وصف |
---|---|---|
path | String | مسار الأرشيف المراد إنشاؤه. إذا كان اسم الملف المحدد يشير إلى ملف موجود ، فسيتم استبداله. |
cpioFormat | CpioFormat | يحدد تنسيق رأس cpio. |
أمثلة
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");
}
}
أنظر أيضا
- enum CpioFormat
- class CpioArchive
- مساحة الاسم Aspose.Zip.Cpio
- المجسم Aspose.Zip