2
Ich versuche, Dateien in externen Speichergeräten auf meinem Android 5.1 Telefon zur Liste mit DocumentfileAndroid Documentfile ungültig URI
String rootPathURI = "file:/media/storage/sdcard1/data/example.externalstorage/files/";
File f = new File(URI(rootPathURI));
DocumentFile documentFile = DocumentFile.fromFile(f);
Dieser Code funktioniert gut, aber ich will es so tun;
String rootPathURI = "file:/media/storage/sdcard1/data/example.externalstorage/files/";
DocumentFile documentFile = DocumentFile.fromTreeUri(getApplicationContext(), Uri.parse(rootPathURI));
aber ich bekomme eine Ausnahme wie folgt aus:
W/System.err(5157): java.lang.IllegalArgumentException: Invalid URI:"file:/media/storage/sdcard1/data/example.externalstorage/files/"
Können Sie mir ein Beispiel für StoreVolume Uri geben? – Tom