public Stream CreateFile(FileSystemPath path)
        {
            var entry = new MemoryZipEntry();

            ZipFile.Add(entry, ToEntryPath(path));
            return(entry.GetSource());
        }
 public Stream CreateFile(FileSystemPath path)
 {
     var entry = new MemoryZipEntry();
     ZipFile.Add(entry, ToEntryPath(path));
     return entry.GetSource();
 }