/// <summary>
 /// Initialise a new instance of <see cref="FastZip"/> using the specified <see cref="DateTime"/>
 /// </summary>
 /// <param name="time">The time to set all <see cref="ZipEntry.DateTime"/> values for created or extracted <see cref="ZipEntry">Zip Entries</see>.</param>
 public FastZip(DateTime time)
 {
     entryFactory_             = new ZipEntryFactory(time);
     restoreDateTimeOnExtract_ = true;
 }
 /// <summary>
 /// Initialise a new instance of <see cref="FastZip"/> using the specified <see cref="ZipEntryFactory.TimeSetting"/>
 /// </summary>
 /// <param name="timeSetting">The <see cref="ZipEntryFactory.TimeSetting">time setting</see> to use when creating or extracting <see cref="ZipEntry">Zip entries</see>.</param>
 /// <remarks>Using <see cref="ZipEntryFactory.TimeSetting.LastAccessTime">TimeSetting.LastAccessTime</see><see cref="ZipEntryFactory.TimeSetting.LastAccessTimeUtc">[Utc]</see> when
 /// creating an archive will set the file time to the moment of reading.
 /// </remarks>
 public FastZip(ZipEntryFactory.TimeSetting timeSetting)
 {
     entryFactory_             = new ZipEntryFactory(timeSetting);
     restoreDateTimeOnExtract_ = true;
 }