By default, files saved to the internal storage are private to your application and other applications cannot access them (nor can the user).
I am able to see the fi
Try using Context.MODE_WORLD_READABLE instead of Context.MODE_PRIVATE when saving the file. Then other apps will have access to the file.