我正在尝试移植我的应用以使用新的api DocumentFile。我已经实现了调用新意图ACTION_OPEN_DOCUMENT_TREE。然后代码
Uri treeUri = resultData.getData();
DocumentFile folder = DocumentFile.fromTreeUri(context, treeUri);
folder.listFiles[0].delete(); // THIS IS NOT DELETING the correct directory.
怎么会失败?我在SD卡中选择了一个文件夹,例如/存储/ sdcard1 /温度。我已经检查过folder.listFile [0]返回类似/ storage / sdcard1 / temp / test的内容,但是当我希望它是/ storage / sdcard1 / temp / test时,删除的文件夹是/ storage / sdcard1 / temp
出了什么问题?
此致 弗朗西斯。