Example #1
0
 public long GetLastModified()
 {
     return(DosUtils.DecodeDateTime(
                LittleEndian.GetUInt16(data, 0x18),
                LittleEndian.GetUInt16(data, 0x16)));
 }
Example #2
0
 public long GetLastAccessed()
 {
     return(DosUtils.DecodeDateTime(
                LittleEndian.GetUInt16(data, 0x12),
                0)); /* time is not recorded */
 }
Example #3
0
 public long GetCreated()
 {
     return(DosUtils.DecodeDateTime(LittleEndian.GetUInt16(data, 0x10), LittleEndian.GetUInt16(data, 0x0E)));
 }