findFiles

open fun findFiles(glob: String): List<String>


open fun findFiles(glob: String, findHighest: Boolean): List<String>

Find files using glob patterns.

Parameters

glob

the glob pattern to match files against

findHighest

if true, only the highest matching file in the directory tree will be returned For example, if you want to find all Maven projects by looking for pom.xml files.