Children
Search the contents of a directory and perform operations on the objects encountered
Descendants Using Path Sets
See {creating-pathsets} for more details on creating PathSets.
This examples selects all descendants of src/main that are scala files and starts with an s.
import scalax.file.Path
val path:Path = Path("/tmp/")
path / "src" / "main" ** "s*.scala" foreach (println)