How do I check if a directory exist on the sdcard in android?
I've made my mistake about checking file/ directory. Indeed, you just need to call isFile() or isDirectory(). Here is the docs
isFile()
isDirectory()
You don't need to call exists() if you ever call isFile() or isDirectory().
exists()