Permission denied on accessing storage even though I gave it
I'm trying to call Directory.EnumerateFiles on "storage/emulated/0/Android". In unity I calledif (!Permission.HasUserAuthorizedPermission(Permission.ExternalStorageRead)) { Permission.RequestUserPermission(Permission.ExternalStorageRead); }And then t...