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
10 months agosteefaand
1 year, 5 months agopetetsai
3 years, 6 months agoWilsonKKerll
3 years, 3 months agoHuim
4 years, 1 month agoSvetleto13
4 years, 1 month agojduarte
4 years, 5 months ago