Find first occurrence of a file name in project in Kotlin

126 Views Asked by At

I'd like to be able to search for "someFileName" file in a project that may contain more than one, starting at the root directory, and then stopping when I encounter the first one. Something like a FileTreeWalk that exits early based on some condition.

1

There are 1 best solutions below

1
On
fun main() {
    val found = File("${yourProjDir}").walk().find {  it.name == "${fileNameToFind}" }
    println(found?.name)
}