mirror of
https://github.com/adamhathcock/sharpcompress.git
synced 2026-09-24 16:05:27 +00:00
intermediate commit: add zip/filepart that only deals with fileinfo
This commit is contained in:
@@ -3,6 +3,18 @@ using SharpCompress.Common.Zip.Headers;
|
||||
|
||||
namespace SharpCompress.Common.Zip;
|
||||
|
||||
internal class FileInfoZipFilePart : FilePart
|
||||
{
|
||||
internal FileInfoZipFilePart(
|
||||
DirectoryEntryHeader header,
|
||||
FileInfo file
|
||||
)
|
||||
: base(header.ArchiveEncoding)
|
||||
{
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
internal class SeekableZipFilePart : ZipFilePart
|
||||
{
|
||||
private bool _isLocalHeaderLoaded;
|
||||
|
||||
Reference in New Issue
Block a user