FullName Alanı
Şöyle yaparız.
Bir stream döndürür. Şöyle yaparız.
Şöyle yaparız.
if (entry.FullName.Substring(entry.Name.Length - 4))
{
case ".dll":
...
break;
default:
break;
}
Open metoduBir 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