Home > Java > javaTutorial > body text

How Can I Retrieve a File\'s Creation Date in Java?

Mary-Kate Olsen
Release: 2024-11-04 09:21:30
Original
749 people have browsed it

How Can I Retrieve a File's Creation Date in Java?

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>
Copy after login

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!

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Articles by Author
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template