I'm using the:
I'm requesting the:
But now with targetSdkVersion="30" and File.DirRootExternal I'm getting the:
I saw in another thread a nessage from Erel that android:requestLegacyExternalStorage was temporary and to use:
What storage area can I now use in the app where other apps can see the files.
in the manifestSetApplicationAttribute(android:requestLegacyExternalStorage, true)
I'm requesting the:
andrp.CheckAndRequest(rp.PERMISSION_READ_EXTERNAL_STORAGE)
rp.PERMISSION_WRITE_EXTERNAL_STORAGE
But now with targetSdkVersion="30" and File.DirRootExternal I'm getting the:
againopen failed: EACCES (Permission denied)
I saw in another thread a nessage from Erel that android:requestLegacyExternalStorage was temporary and to use:
That gives me:rp.GetSafeDirDefaultExternal("")
and works for the app, but when I look with a filemanager app in:/storage/emulated/0/Android/data/mobi.moonc.loopdeloop/files
there is nothing there./storage/emulated/0/Android/data
What storage area can I now use in the app where other apps can see the files.