I am using the FSEvents API to get all the changes in a directory from its creation until now.
From the way I am doing it, I successfully get all the event ids, however these events do not contain timestamps. At the beginning I thought it was impossible to match these ids with a specific time until I read this on CocoaDev:
Events are given a unique 64-bit ID rather than a timestamp (due to automatic coalescing of events that occur within 30 seconds of each other to save space) but you can convert this to an approximate time.
However I still do not understand how to convert 16738189
to a timestamp. Any ideas?