I hava a File and I want to know about the 'Creation Date' & 'Last Modification Date' of that File. Is this possible without using JNI?
Created May 4, 2012
Mathias Neuhaus
you can get the 'last modified' timestamp by
File file = new File ("someName"); long lastModified = file.lastModified ();
(no idea about 'creation time')