About HFS+ Time
HFS+, also known as HFS Plus or Mac OS Extended, stores file-system timestamps as whole seconds since 1904-01-01T00:00:00Z. Compared with Unix time, the exact epoch gap is 2,082,844,800 seconds.
- HFS+ to Unix seconds:
unix = hfs - 2,082,844,800 - Unix seconds to HFS+:
hfs = unix + 2,082,844,800 - Endianness: HFS Plus on-disk structures are big-endian; little-endian previews help when raw bytes were copied in reverse order.
- Range: an unsigned 32-bit HFS+ timestamp spans
1904-01-01T00:00:00Zthrough2040-02-06T06:28:15Z. The often-cited2106date is Unix unsigned 32-bit overflow, not HFS+ unsigned 32-bit overflow.
