Created
June 29, 2020 08:08
-
-
Save iniyanmurugavel/2eaa8f9119fd62e9396daa2d81808978 to your computer and use it in GitHub Desktop.
About FileStorage in android
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Methods to store in Internal Storage(GT): | |
| Both these methods are present in Context class | |
| File getDir (String name, int mode) | |
| File getFilesDir () | |
| Methods to store in Primary External Storage i.e. Internal Storage(UT): | |
| File getExternalStorageDirectory () | |
| File getExternalFilesDir (String type) | |
| File getExternalStoragePublicDirectory (String type) | |
| https://androidpedia.net/en/tutorial/150/storing-files-in-internal---external-storage |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment