{
  "WorkItem": {
    "AffectedComponent": {
      "Name": "",
      "DisplayName": ""
    },
    "ClosedComment": "",
    "ClosedDate": null,
    "CommentCount": 0,
    "Custom": null,
    "Description": "I am having trouble accessing the creation date of files in a zipped file. The file creation time is correct but the creation date is \nalways equal to the current date. Other fields like ModifiedTime are correct.\n\nThe following code illustrates the problem.\n```\nusing (ZipFile zip = ZipFile.Read(zippedFile))\n    foreach (ZipEntry zipEntry in zip)\n    {\n        string standardizedZipName = zipEntry.FileName.Replace('\\\\', '/');\n        if (zipEntry.IsDirectory)\n        {   //path name\n            Console.Write(\"Directory: \" + zipEntry.FileName\n                    + \"  Created \" + zipEntry.CreationTime.ToString());\n        }   //ends path name\n        else\n        {   //file name\n            Console.Write(\"  \" + zipEntry.FileName\n                    + \"  Created \" + zipEntry.CreationTime.ToString()\n                    + \"  Modified \" + zipEntry.ModifiedTime.ToString()\n                    + \"  Last modified \" + zipEntry.LastModified.ToString());\n        }   //ends file name\n    }   //ends foreach (ZipEntry...\n```\nThe output shows:\nRunning on 4/13/2013 9:37:15 PM\n  jigo-src-2.1.1/build.xml  Created 4/13/2013 2:46:28 PM  Modified 2/7/2003 8:07:50 AM  Last modified 2/7/2003 12:07:50 AM\nDirectory: jigo-src-2.1.1/conf/  Created 4/13/2013 2:46:28 PM\n  jigo-src-2.1.1/conf/jigo.pro  Created 4/13/2013 2:46:28 PM  Modified 1/28/2003 8:37:17 AM  Last modified 1/28/2003 12:37:18 AM\n  jigo-src-2.1.1/conf/packages.txt  Created 4/13/2013 2:46:28 PM  Modified 1/28/2003 8:31:43 AM  Last modified 1/28/2003 12:31:44 AM\n  jigo-src-2.1.1/conf/README  Created 4/13/2013 2:46:28 PM  Modified 1/28/2003 7:47:38 AM  Last modified 1/27/2003 11:47:38 PM\nDirectory: jigo-src-2.1.1/docs/  Created 4/13/2013 2:46:28 PM\n\nI am running Ionic.Zip.dll 1.9.1.8 using C# Microsoft VS 2012 Express on Windows 8 but have the same problem on a Windows 7 system\nusing VS 2012.\n\nAny suggestions?",
    "LastUpdatedDate": "2014-09-11T23:31:00.79-07:00",
    "PlannedForRelease": "",
    "ReleaseVisibleToPublic": false,
    "Priority": {
      "Name": "Unassigned",
      "Severity": 0,
      "Id": 0
    },
    "ProjectName": "DotNetZip",
    "ReportedDate": "2013-04-13T08:03:43.003-07:00",
    "Status": {
      "Name": "Proposed",
      "Id": 1
    },
    "ReasonClosed": {
      "Name": "Unassigned"
    },
    "Summary": "CreationTime is incorrect",
    "Type": {
      "Name": "Issue",
      "Id": 3
    },
    "VoteCount": 2,
    "Id": 16154
  },
  "FileAttachments": [],
  "Comments": []
}