Advertisement
Guest User

Untitled

a guest
May 24th, 2016
45
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. Path file = ...;
  2. BasicFileAttributes attr = Files.readAttributes(file, BasicFileAttributes.class);
  3.  
  4. System.out.println("creationTime: " + attr.creationTime());
  5. System.out.println("lastAccessTime: " + attr.lastAccessTime());
  6. System.out.println("lastModifiedTime: " + attr.lastModifiedTime());
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement