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!

link|improve this question

Possibly a duplicate of stackoverflow.com/questions/2723838/… – jt. Jul 30 '11 at 18:56
did you check this, stackoverflow.com/questions/32586/… ? – Adi Jul 30 '11 at 18:57
Hmmm, @jt, I must have overlooked that. You should consider just putting it as your answer, that link pointed me in the right direction. – Brian Jul 30 '11 at 18:59
possible duplicate of How to get creation date of a file in Java – CoolBeans Jul 30 '11 at 18:59
@AeroDroid - it will get closed as duplicate. – CoolBeans Jul 30 '11 at 19:00
feedback

1 Answer

up vote 1 down vote accepted

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:

Path path = ... // the path to the file
BasicFileAttributes attributes = 
    Files.readAttributes(path, BasicFileAttributes.class);
FileTime creationTime = attributes.creationTime();

As CoolBeans said, not all file systems store the creation time. The BasicFileAttributes Javadoc states:

If the file system implementation does not support a time stamp to indicate the time when the file was created then this method returns an implementation specific default value, typically the last-modified-time or a FileTime representing the epoch (1970-01-01T00:00:00Z).

link|improve this answer
Hmm, well I think I'll go with jt's answer. That worked for me. – Brian Jul 30 '11 at 19:03
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.