예제 #1
0
 internal ZipDirectory(ZipArchiveEntry entry, ZipDevice device, VfsEntry parent = null)
     : base(entry.GetEntryName(), device, parent)
 {
     Attributes = FileAttributes.Directory;
 }
예제 #2
0
 internal ZipFile(ZipArchiveEntry entry, ZipDevice device, VfsEntry parent = null)
     : base(entry.GetEntryName(), device, parent)
 {
     _entry = entry;
     Size   = entry.Length;
 }
예제 #3
0
 internal ZipDirectory(ZipDevice device)
     : base($"{Path.DirectorySeparatorChar}", device)
 {
 }