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