{
  "WorkItem": {
    "AffectedComponent": {
      "Name": "",
      "DisplayName": ""
    },
    "ClosedComment": "",
    "ClosedDate": null,
    "CommentCount": 0,
    "Custom": null,
    "Description": "Hi,\n\nFor some reasons, when using Windows Compression, when I unzip the file:\n\n```\nusing (var zipFile = ZipFile.Read(file.InputStream))\n{\nvar zipEntries = zipFile.ZipEntries\n}\n```\nI have no Directory ZipEntries. But in the zip, there are directories. Is there a way to still get the folders? A special encoding that we need to use? \n\nSee the zip in attachement. \n\nThanks for your help.",
    "LastUpdatedDate": "2015-10-02T05:13:47.433-07:00",
    "PlannedForRelease": "",
    "ReleaseVisibleToPublic": false,
    "Priority": {
      "Name": "Unassigned",
      "Severity": 0,
      "Id": 0
    },
    "ProjectName": "DotNetZip",
    "ReportedDate": "2015-10-01T07:46:52.063-07:00",
    "Status": {
      "Name": "Proposed",
      "Id": 1
    },
    "ReasonClosed": {
      "Name": "Unassigned"
    },
    "Summary": "Directories missing with windows zip",
    "Type": {
      "Name": "Unassigned",
      "Id": 5
    },
    "VoteCount": 1,
    "Id": 17552
  },
  "FileAttachments": [
    {
      "FileId": 6116,
      "FileName": "DummyZip.zip",
      "DownloadUrl": ".\\6116"
    }
  ],
  "Comments": [
    {
      "Message": "Hi there! :)\nJust happened to pass by and noticed this.\nI had some code handy and tested the ZIP with this code:\r\n\r\n```\n            var zip = ZipFile.Read(@\"C:\\Users\\user\\Downloads\\DummyZip.zip\");\n            var str = string.Empty;\n            foreach (var i in zip)\n            {\n                str += i.FileName + \"\\r\\n\";\n            }\n```\r\n\r\nHere is what I got in `str`:\r\n\r\n```\nDummyZip/Test1/\nDummyZip/Test1/350x200.gif\nDummyZip/Test1/Test1.1/\nDummyZip/Test1/Test1.1/718x523.png\nDummyZip/Test2/\nDummyZip/Test2/2000x1700.png\nDummyZip/Test2/350x200.jpg\nDummyZip/Test3/\nDummyZip/Test3/2000x1700-2.png\nDummyZip/Test3/350x200.png\n```\nProbably you use an old version of the lib, because I have no `ZipEntries` property.",
      "PostedDate": "2015-10-01T08:02:46.977-07:00",
      "Id": -2147483648
    },
    {
      "Message": "Hi there,\r\n\r\nThanks for your help, my mistake, by ZipEntries I mean Entries:\n```\nusing (var zipFile = ZipFile.Read(file.InputStream))\n{\nvar zipEntries = zipFile.Entries;\n}\n```\nSo I have no Entries of type Directory (property IsDirectory=true). Also, you're reading it from disk, on my side, I'm reading it from a HttpPostedFileBase from a web page. \r\n\r\nRegards,",
      "PostedDate": "2015-10-02T05:13:47.433-07:00",
      "Id": -2147483648
    }
  ]
}