使用MTP通过Android存储访问框架/ DocumentProvider遍历目录层次结构的问题

时间:2016-12-12 07:53:47

标签: android android-external-storage mtp storage-access-framework document-provider

更新: 我最初的问题可能会产生误导,所以我想改写一下: 我想通过Android的存储访问框架从MTP连接设备遍历层次结构树。我似乎无法实现这一点,因为我得到一个SecurityException声明子节点不是其父节点的后代。有没有办法解决这个问题?或者这是一个已知的问题?感谢。

我正在编写一个Android应用程序,尝试使用Android的存储访问框架(SAF)通过MtpDocumentsProvider遍历和访问层次结构树中的文档。我或多或少地遵循https://github.com/googlesamples/android-DirectorySelection中描述的代码示例关于如何从我的应用程序启动SAF Picker,选择MTP数据源,然后在onActivityResult中使用返回的Uri遍历层次结构。不幸的是,这似乎不起作用,因为只要我访问子文件夹并尝试遍历该文件夹,我总是得到一个SecurityException,说明document xx is not a descendant of yy

所以我的问题是,使用MtpDocumentProvider,如何从我的应用程序成功遍历层次结构树并避免此异常?

具体来说,在我的应用程序中,首先,我调用以下方法来启动SAF选择器:

private void launchStoragePicker() {
    Intent browseIntent = new Intent(Intent.ACTION_OPEN_DOCUMENT_TREE);
    browseIntent.addFlags(
        Intent.FLAG_GRANT_PERSISTABLE_URI_PERMISSION
            | Intent.FLAG_GRANT_PREFIX_URI_PERMISSION
            | Intent.FLAG_GRANT_READ_URI_PERMISSION
            | Intent.FLAG_GRANT_WRITE_URI_PERMISSION
    );
    startActivityForResult(browseIntent, REQUEST_CODE_OPEN_DIRECTORY);
}

Android SAF选择器然后启动,我看到我的连接设备被识别为MTP数据源。我选择了所说的数据源,然后从我的Uri获得onActivityResult

@Override
public void onActivityResult(int requestCode, int resultCode, Intent data) {
    super.onActivityResult(requestCode, resultCode, data);
    if (requestCode == REQUEST_CODE_OPEN_DIRECTORY && resultCode == Activity.RESULT_OK) {
        traverseDirectoryEntries(data.getData()); // getData() returns the root uri node
    }
}

然后,使用返回的Uri,我调用DocumentsContract.buildChildDocumentsUriUsingTree获取Uri,然后我可以使用它来查询和访问树层次结构:

void traverseDirectoryEntries(Uri rootUri) {
    ContentResolver contentResolver = getActivity().getContentResolver();
    Uri childrenUri = DocumentsContract.buildChildDocumentsUriUsingTree(rootUri, DocumentsContract.getTreeDocumentId(rootUri));

    // Keep track of our directory hierarchy
    List<Uri> dirNodes = new LinkedList<>();
    dirNodes.add(childrenUri);

    while(!dirNodes.isEmpty()) {
        childrenUri = dirNodes.remove(0); // get the item from top
        Log.d(TAG, "node uri: ", childrenUri);
        Cursor c = contentResolver.query(childrenUri, new String[]{Document.COLUMN_DOCUMENT_ID, Document.COLUMN_DISPLAY_NAME, Document.COLUMN_MIME_TYPE}, null, null, null);
        try {
            while (c.moveToNext()) {
                final String docId = c.getString(0);
                final String name = c.getString(1);
                final String mime = c.getString(2);
                Log.d(TAG, "docId: " + id + ", name: " + name + ", mime: " + mime);
                if(isDirectory(mime)) {
                    final Uri newNode = DocumentsContract.buildChildDocumentsUriUsingTree(rootUri, docId);
                    dirNodes.add(newNode);
                }
            }
        } finally {
            closeQuietly(c);
        }
    }
}

// Util method to check if the mime type is a directory
private static boolean isDirectory(String mimeType) {
    return DocumentsContract.Document.MIME_TYPE_DIR.equals(mimeType);
}

// Util method to close a closeable
private static void closeQuietly(Closeable closeable) {
    if (closeable != null) {
        try {
            closeable.close();
        } catch (RuntimeException re) {
            throw re;
        } catch (Exception ignore) {
            // ignore exception
        }
    }
}

外部while循环的第一次迭代成功:对query的调用返回了一个有效的Cursor供我遍历。问题是第二次迭代:当我尝试查询恰好是Uri的子节点的rootUri时,我得到一个SecurityException,说明文档xx不是后代YY

  

D / MyApp(19241):node uri:content://com.android.mtp.documents/tree/2/document/2/children   D / MyApp(19241):docId:4,name:DCIM,mime:vnd.android.document / directory   D / MyApp(19241):node uri:content://com.android.mtp.documents/tree/2/document/4/children   E / DatabaseUtils(20944):向parcel写入异常   E / DatabaseUtils(20944):java.lang.SecurityException:文档4不是2的后代

任何人都可以提供一些关于我做错的见解吗?如果我使用不同的数据源提供商,例如,来自外部存储设备(即通过标准USB OTG阅读器连接的SD卡),一切正常。

其他信息: 我在Nexus 6P,Android 7.1.1上运行此操作,而我的应用minSdkVersion为19。

3 个答案:

答案 0 :(得分:0)

在结果的开始活动之前添加的标志不执行任何操作。

我不明白你使用DocumentsContract。用户选择一个目录。从uri中,您可以为该目录构建DocumentFile

之后,在该实例上使用DocumentFile::listFiles()来获取子目录和文件列表。

答案 1 :(得分:0)

经过不同的尝试后,我不确定这个SecurityException是否有办法解决MTP数据源问题(除非有人可以反驳我)。查看DocumentProvider.java源代码和堆栈跟踪,似乎在Android框架中的DocumentProvider#isChildDocument实现中未正确覆盖DocumentProvider#enforceTreeMtpDocumentProvider的调用。默认实现始终返回false。 #sadface

答案 2 :(得分:0)

我正在使用您的代码进入子文件夹并添加行:

Uri childrenUri;
try {
    //for childs and sub child dirs
    childrenUri = DocumentsContract.buildChildDocumentsUriUsingTree(uri, DocumentsContract.getDocumentId(uri));
} catch (Exception e) {
    // for parent dir
    childrenUri = DocumentsContract.buildChildDocumentsUriUsingTree(uri, DocumentsContract.getTreeDocumentId(uri));
}