I want to read an OTG USB on Android 11 I'm able to list files like this on Android 9 :
val path = File("/storage")
I can list files from the external memory in Android 11 but not the USB OTG :
val path = Environment.getExternalStorageDirectory()
The question is why can I read external memory but not OTG USB on Android 11 ? I want to be able to read USB OTG on Android 11.