This seems like a pretty straightforward question but I haven't been able to find a definitive answer anywhere online. How can I get the date/time a file was created through Java's file manager? Aside from just the name of a file, what else can I get about the file's "properties"? Thanks!
feedback
|
|
I'm not sure how you'd get it using Java 6 and below. With Java 7's new file system APIs, it'd look like this:
As CoolBeans said, not all file systems store the creation time. The BasicFileAttributes Javadoc states:
| |||
|
feedback
|