[
  {
    "Id": "81103",
    "ThreadId": "24199",
    "Html": "\r\nA weird issue I have come across recently. I create a new zip file, add a file to it, and save the zip file. Everything works great. I can extract and view the zipped file(s) with WinZip. However, If I try to extract from explorer (Windows XP), it shows the zip file as empty. Code below<br /><br />Dim zFile As ZipFile<br /><br />If File.Exists(strZipFile) Then<br />   File.Delete(strZipFile)<br />End If<br /><br />zFile = New ZipFile(strZipFile)<br />zFile.AddFile(strExcelFile)<br />zFile.Save()<br />",
    "PostedDate": "2008-03-17T09:56:11.017-07:00",
    "UserRole": null,
    "MarkedAsAnswerDate": null
  },
  {
    "Id": "81115",
    "ThreadId": "24199",
    "Html": "\r\nI actually figured this out after reading a little more into the help file for the AddFile Method within the ZipFile Class. <br /><br />I modified my code from zFile.AddFile(strExcelFile) to zFile.AddFile(strExcelFile, \"\"), and this seemed to fix my issue regarding explorer. <br />",
    "PostedDate": "2008-03-17T11:15:59.293-07:00",
    "UserRole": null,
    "MarkedAsAnswerDate": null
  }
]