Android File Storage

The Android file system gives you the flexibility to scope access to your files as you see fit. Storing files within application scope Context.getCacheDir() This is your applications ephemeral storage directory. These files are can be removed by the system at any time and are removed when you uninstall your application. Context.getFilesDir() Store more permanent…

Read More