Given the code fragment:
Stream<Path> files = Files.walk(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?
steefaand
5 months, 4 weeks agor1muka5
1 year, 5 months agoWilsonKKerll
2 years, 4 months agorameasy
3 years, 12 months agoM_Jawad
4 years, 6 months ago