[
  {
    "Id": "1231244",
    "ThreadId": "541455",
    "Html": "I'm trying to list file inside zipped zip files without extracting\r<br />\n<br />\nIn the debugger I saw ArchiveStream but I can't access it because it is 'Friend'\r<br />\n<br />\nHow do I access the &quot;ArchiveStream&quot; of an ZipEntry\r<br />\n<br />\nIn my case ZipEntries are zip files\r<br />\n<br />\n-Main Zip file<br />\n<ul>\n<li>ZipFile1</li>\n<li>ZipFile2</li>\n<li>ZipFile3</li>\n<li>\nZipFile4<br />\n</li>\n</ul>\nI need to list all files including those in other zip contained in the main zip\r<br />\n<br />\nDim Zip1 As ZipFile<br />\n<pre><code>    Dim ListItem As New ListViewItem\n\n    Zip1 = ZipFile.Read(FileName)\n\n    For Each ZipEntry In Zip1.Entries\n         ListItem.text = ZipEntry.Filename\n         If IO.Path.GetExtension(ZipEntry.Filename).ToLower = &quot;.zip&quot; then\n            'List files (In calling back the sub making it recursive)\n         end if\n    next\n\n</code></pre>\n\n",
    "PostedDate": "2014-04-07T05:49:27.907-07:00",
    "UserRole": null,
    "MarkedAsAnswerDate": null
  }
]