(File root)
| 38 | } |
| 39 | } |
| 40 | public void |
| 41 | processDirectoryTree(File root) throws IOException { |
| 42 | PathMatcher matcher = FileSystems.getDefault() |
| 43 | .getPathMatcher("glob:**/*.{" + ext + "}"); |
| 44 | Files.walk(root.toPath()) |
| 45 | .filter(matcher::matches) |
| 46 | .forEach(p -> strategy.process(p.toFile())); |
| 47 | } |
| 48 | } |