How to use Java 8 `Files.find` method?
Path.getFilename()
does not return a String, but a Path object, do this:
getFilename().toString().equals("workspace")
Path.getFilename()
does not return a String, but a Path object, do this:
getFilename().toString().equals("workspace")