Filesystem.ExternalStorage

Hi,

i need to get the photos from the externalStorage directory “Pictures”. I’m running on Android 10 & 11.

async readDirectory(){
    await Filesystem.readdir({
      path: '',
      directory: FilesystemDirectory.ExternalStorage
    }).then(res => {
      console.log(res);
    })
  }

I have also add:

android:requestLegacyExternalStorage="true"

I’m not able to reach the Pictures folder, also the “Readdir” is not showing any files in the root of “externalStorage”.

Did anyone facing the same issue?