0

Possible Duplicate:
How to discover a File's creation time with Java?

Using the java.io.File class to open a file, I am able to get the last modified date with lastModified(). Is there a way to find the creation time of the file?

Community
  • 1
  • 1
NullPointer0x00
  • 1,808
  • 3
  • 18
  • 20
  • The file-systems on certain operating systems don't support creation time. For example, many unix file-systems don't have a creation time value which may be why Java doesn't have a File.created(). – Gray Oct 14 '10 at 02:34

1 Answers1

0

How to discover a File's creation time with Java?

Community
  • 1
  • 1
Andrew Hubbs
  • 9,338
  • 9
  • 48
  • 71