29 Haziran 2016 Çarşamba

ZipArchiveEntry Sınıfı

FullName Alanı
Şöyle yaparız.
if (entry.FullName.Substring(entry.Name.Length - 4))
{
  case ".dll":
    ...
    break;
  default:
    break;
}
Open metodu
Bir stream döndürür. Şöyle yaparız.
ZipArchiveEntry entry = ...;
Stream unzippedEntryStream = entry.Open();
Şöyle yaparız.
using (ZipArchive za = new ZipArchive(zipFileStream, ZipArchiveMode.Update))
{
  foreach (ZipArchiveEntry inFile in za.Entries)
  {
    ZipArchiveEntry fileEntry = inFile;
    using (Stream writer = fileEntry.Open())
    {...}
  }
}


Hiç yorum yok:

Yorum Gönder