marschall / memoryfilesystem

An in memory implementation of a JSR-203 file system
282 stars 36 forks source link

Use java.time.Instant to store time information in MemoryFileAttributes #116

Closed glhez closed 5 years ago

glhez commented 5 years ago

The use of Instant intead of long + FileTime.toMillis/fromMillis keep the granularity (for example, up to the nanoseconds if the fs supports it).

marschall commented 5 years ago

Thank you.