How To I Read And Write A Txt File From Android 10 And Above From Internal Storage
I've been trying to create an app that reads a TXT file from downloads internal storage and puts it into an ArrayList and writes an excel sheet to downloads internal storage from i
Solution 1:
use context.getExternalFilesDir()
or context.getExternalCacheDir()
,these also work in 10. See https://developer.android.com/training/data-storage
Post a Comment for "How To I Read And Write A Txt File From Android 10 And Above From Internal Storage"