mirror of
https://github.com/adamhathcock/sharpcompress.git
synced 2026-07-21 00:15:24 +00:00
Add SaveTo overload for zip archives
This commit is contained in:
@@ -168,6 +168,11 @@ namespace SharpCompress.Archives.Zip
|
||||
}
|
||||
}
|
||||
|
||||
public void SaveTo(Stream stream)
|
||||
{
|
||||
SaveTo(stream, new WriterOptions(CompressionType.Deflate));
|
||||
}
|
||||
|
||||
protected override void SaveTo(Stream stream, WriterOptions options,
|
||||
IEnumerable<ZipArchiveEntry> oldEntries,
|
||||
IEnumerable<ZipArchiveEntry> newEntries)
|
||||
|
||||
Reference in New Issue
Block a user