Given the code fragment:
Stream<Path> files = Files.list(Paths.get(System.getProperty("user.home"))); files.forEach (fName -> { //line n1 try {
Path aPath = fName.toAbsolutePath(); //line n2
System.out.println(fName + ":"
+ Files.readAttributes(aPath, Basic.File.Attributes.class).creationTime
());
} catch (IOException ex) {
ex.printStackTrace();
});
What is the result?
6c84cb9
9 months, 3 weeks agosteefaand
1 year, 4 months agopetetsai
3 years, 5 months agoWilsonKKerll
3 years, 3 months agoHuim
4 years, 1 month agoSvetleto13
4 years agojduarte
4 years, 4 months ago