(Path path)
| 67 | } |
| 68 | |
| 69 | public static boolean isFile(Path path) { |
| 70 | return Files.isRegularFile(path); |
| 71 | } |
| 72 | |
| 73 | public static boolean isDir(Path path) { |
| 74 | return Files.isDirectory(path); |
nothing calls this directly
no outgoing calls
no test coverage detected