Package java.nio.file.attribute

Examples of java.nio.file.attribute.BasicFileAttributes


    public static long getCreationTime(File file) {
        long time;
        try  {
            Path path = Paths.get(file.getAbsolutePath());
            BasicFileAttributes fileattr = Files
                    .getFileAttributeView(path, BasicFileAttributeView.class)
                    .readAttributes();
            time = fileattr.creationTime().toMillis();
        } catch (Exception e) {
            time = 0L;
        }
        return time;
    }
View Full Code Here

TOP

Related Classes of java.nio.file.attribute.BasicFileAttributes

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.