Retrieving File Creation Date in Java
Determining the creation date of a file can be crucial when organizing a directory by age. However, finding a reliable mechanism to retrieve this information can be challenging. While previous discussions on StackOverflow have touched upon this topic, a direct solution remains elusive.
Fortunately, Java provides a powerful file manipulation library called "nio" that offers the ability to access metadata, including creation time, if the filesystem supports it. The following Java code snippet demonstrates how to retrieve file creation date using Java nio:**
<code class="java">import java.nio.file.Path; import java.nio.file.Files; import java.nio.file.attribute.BasicFileAttributes; public class FileCreationDate { public static void main(String[] args) { Path file = Paths.get("path/to/file.txt"); BasicFileAttributes attr = Files.readAttributes(file.toPath(), BasicFileAttributes.class); System.out.println("Creation Time: " + attr.creationTime()); System.out.println("Last Access Time: " + attr.lastAccessTime()); System.out.println("Last Modified Time: " + attr.lastModifiedTime()); } }</code>
This solution is compatible with Windows and Linux systems, ensuring that you can retrieve file creation dates regardless of the underlying operating system. Additionally, this method does not rely on filename conventions that embed creation date/time information, making it a versatile solution for any type of file.
The above is the detailed content of How Can I Retrieve a File\'s Creation Date in Java?. For more information, please follow other related articles on the PHP Chinese website!