Пример #1
0
 private static Stream<Path> walk(Path path) {
   try {
     return Files.walk(path);
   } catch (IOException e) {
     throw new RuntimeException(e);
   }
 }