`const dirs_read = RNFetchBlob.fs.dirs.SDCardDir + '/Whatsapp/Media/.Statuses';`
The above code is working properly on android 9 and lower but, can not read the status of android 10.
`const dirs_read = RNFetchBlob.fs.dirs.SDCardDir + '/Whatsapp/Media/.Statuses';`
The above code is working properly on android 9 and lower but, can not read the status of android 10.
I guess the problem is in privacy settings, according to SDCardDir
in path you don't access internal but extrernal storage where you need to add READ_EXTERNAL_STORAGE
, WRITE_EXTERNAL_STORAGE
, and MANAGE_EXTERNAL_STORAGE
permissions. You can't access folder of another apps in internal storage at all (see more).