The following code is how I am trying to identify if a file exists in the internal storage, MODE_PRIVATE.
MODE_PRIVATE
public boolean isset(String filename){
Kotlin: This works for me !!
fun check(path: String?): Boolean { val file = File(path) return file.exists() }