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){
hope this method helps you.
public boolean fileExist(String fname){ File file = getBaseContext().getFileStreamPath(fname); return file.exists(); }