[
  {
    "Id": "459589",
    "ThreadId": "217228",
    "Html": "<p>At first I thought maybe it was something about the zip file was using, but I get the same error on a zip file made with the built in Windows 7 compressed zip containing only a .txt file. Here is the code doing the unzipping which is also just an example from the site.</p>\r\n<p>\r\n<div style=\"color:black;background-color:white\">\r\n<pre><span style=\"color:blue\">public</span> <span style=\"color:blue\">void</span> UnZipFile(<span style=\"color:blue\">string</span> InputPathOfZipFile)\r\n        {\r\n            <span style=\"color:blue\">string</span> unpack = Path.GetDirectoryName(InputPathOfZipFile);\r\n            <span style=\"color:blue\">try</span>\r\n            {\r\n                <span style=\"color:blue\">using</span> (ZipFile zip1 = ZipFile.Read(InputPathOfZipFile))\r\n                {\r\n                    <span style=\"color:blue\">foreach</span> (ZipEntry e <span style=\"color:blue\">in</span> zip1)\r\n                    {\r\n                        e.Extract(unpack, ExtractExistingFileAction.OverwriteSilently);\r\n                    }\r\n                }\r\n                \r\n            }\r\n            <span style=\"color:blue\">catch</span> (Exception ex)\r\n            {\r\n                MessageBox.Show(ex.Message);\r\n            }\r\n\r\n            \r\n        }\r\n</pre>\r\n</div>\r\n</p>",
    "PostedDate": "2010-06-24T10:04:47.05-07:00",
    "UserRole": null,
    "MarkedAsAnswerDate": null
  },
  {
    "Id": "460814",
    "ThreadId": "217228",
    "Html": "<p>How large is the file you are unzipping?&nbsp;</p>\r\n<p>The message you provided should be possible only with a very very large file: greater than 3gb. &nbsp;Is that approximately the size of the file you're trying to unzip?&nbsp;</p>\r\n<p>I don't have Windows7, but I think the compressed folder should work the same on Windows7 as on Vista. &nbsp;</p>\r\n<p>&nbsp;</p>",
    "PostedDate": "2010-06-28T13:10:05.653-07:00",
    "UserRole": null,
    "MarkedAsAnswerDate": null
  },
  {
    "Id": "460817",
    "ThreadId": "217228",
    "Html": "<p>I figured it out, another part of my program was removing some characters from a .doc and somewhere I forgot to tell it not to do this for the .zip so it was removing them from the zip and corrupting it. After I fixed that dumb mistake worked like a charm</p>",
    "PostedDate": "2010-06-28T13:12:12.877-07:00",
    "UserRole": null,
    "MarkedAsAnswerDate": null
  }
]