I took the time to review FileSystemDirectoryEntry.
UNIX has 3 types of timestamps
-The access time is the last time when the content was accessed.
-The modification time is last time when the content was modified.
-The change time is the last time when the metadata was modified.
FileSystemDirectoryEntry>>creationTime
This is wrong because there is no such thing as creation time in UNIX.
I checked in Linux chmod'ing an empty file and #creationTime displays the chmod "change time".
Then added content to the file
echo prueba >> test1.txt
And both "creation" and "modification" instance variables were updated.
I couldn't find #accessTime method to get the last timestamp of last access.
Cheers,
Hern��n