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
4 months, 3 weeks agosteefaand
11 months, 4 weeks agopetetsai
3 years agoWilsonKKerll
2 years, 10 months agoHuim
3 years, 8 months agoSvetleto13
3 years, 7 months agojduarte
4 years ago