Пример #1
0
 public ZipArchiveEntryFile(ZipFileSystem root, ZipArchiveEntry entry)
 {
     this.root = root;
     this.entry = entry;
     this.fullname = entry.FullName.Replace('\\', '/');
     this.name = entry.Name;
 }
Пример #2
0
 public ZipArchiveEntryFile(ZipFileSystem root, string fullname)
 {
     this.root = root;
     this.fullname = fullname;
     this.name = fullname.PostLastCharacter("/\\", fullname);
 }
Пример #3
0
 public ZipArchiveEntryDirectory(ZipFileSystem root, TOCDirectory directory)
 {
     this.root = root;
     this.directory = directory;
 }