I'm sure I'm being daft, but how do you convert a Path to a java File or a PathSet to a set of Java Files?
My current code converts a Path to a File like this:
new File(path.toURL.getFile)
and converts a PathSet to a Set[File] like this:
pathSet.filter(_.isFile).map(p => new File(p.toURL.getFile)).toSet