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