`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 addREAD_EXTERNAL_STORAGE
,WRITE_EXTERNAL_STORAGE
, andMANAGE_EXTERNAL_STORAGE
permissions. You can't access folder of another apps in internal storage at all (see more).