0

尝试使用存储访问框架和 Uri 导航文件夹树时,我似乎出现了一些意外行为。简而言之,我的测试用例是往返 DocumentFile -> Uri -> DocumentFile -> Uri 测试。(代码适用于 Xamarin,但这些是底层 Android 类,因此它不应该是特定于语言的。)

void Test(DocumentFile folder)
{
  var uri = folder.Uri;
  //
  // Test case is using an SD card mounted in a card trader in a USB hub.
  // uri: {content://com.android.externalstorage.documents/tree/1111-1111%3ADCIM/document/1111-1111%3ADCIM%2F110ND810}
  //
  var folder2 = DocumentFile.FromTreeUri(context, uri);
  var uri2 = folder2.Uri;
  //
  // uri2: {content://com.android.externalstorage.documents/tree/1111-1111%3ADCIM/document/1111-1111%3ADCIM}
  //
  // At this point I expected uri2 to be equal to uri, but it's not.
  // Instead, uri2 points to the parent of uri
  //
}

问题1:我的期望在这里吗?我不应该期望能够使用 Uri 导航 SAF 文件夹树吗?

问题 2:如果是这样,什么是合适的解决方法?

4

1 回答 1

1

以下库使使用 SAF 变得如此简单。我认为你不应该得到两个不同的uri!

https://github.com/madnik7/PortableStorage

于 2020-05-21T01:52:18.900 回答