[
  {
    "Id": "126133",
    "ThreadId": "38019",
    "Html": "Hi,<br>\r\n<br>\r\nIs there anyway to extract files from a zip, not using the path stored in the zip?&nbsp; i.e. I do not want to&nbsp;recreate the folder structure inside the zip, just output all files to one folder instead.\r\n",
    "PostedDate": "2008-10-19T06:31:39.71-07:00",
    "UserRole": null,
    "MarkedAsAnswerDate": null
  },
  {
    "Id": "126335",
    "ThreadId": "38019",
    "Html": "Extract to a file stream, opened on the file you desire,&nbsp;with the ZipEntry.Extract(System.IO.Stream) method.<br>\r\n<br>\r\nSomething like this: <br>\r\n<br>\r\nZipEntry e = zip[filename]; <br>\r\nusing (<strong>System</strong>.<strong>IO</strong>.<strong>FileStream</strong> s = new <strong>System</strong>.<strong>IO</strong>.<strong>FileStream</strong>(System.IO.Path.GetFileName(e.FileName), IO.FileMode.<strong>Open</strong>, IO.FileAccess.ReadWrite))<br>\r\n{<br>\r\n&nbsp; e.Extract(s);<br>\r\n}<br>\r\n",
    "PostedDate": "2008-10-20T10:49:36.157-07:00",
    "UserRole": null,
    "MarkedAsAnswerDate": null
  }
]