Exemplo n.º 1
0
 public ZipEntryFile(ZipPath zipPath, ZipEntry zipEntry, string path)
     : base(path, System.IO.Path.GetFileName(path))
 {
     _zipPath  = zipPath;
     _zipEntry = zipEntry;
 }
Exemplo n.º 2
0
 public ZipPath(ZipPath parentZipPath, string directory)
 {
     _parentZipPath = parentZipPath;
     _zipFilename   = parentZipPath._zipFilename;
     _directory     = directory?.Replace('\\', '/');
 }