We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
fyne-io
andydotxyz
toaster
Jacalz
changkun
Learn more about funding links in repositories.
Report abuse
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When trying to list the child of an URI (i.e. the content of the directory) which has the content: scheme on Android, the child URI are truncated.
content:
In my case the file picker returns a directory the URI :
content://com.android.externalstorage.documents/tree/primary:Android/media/Cards
And when listing the file within this directory with storage.List(), the children are missing half of their URI like
storage.List()
primary:Android/media/Cards/test.md
Instead of
content://com.android.externalstorage.documents/tree/primary:Android/media/Cards/test.md
The text was updated successfully, but these errors were encountered:
Fix partial child URI returned by storage.List() for content: scheme …
14b044e
…on Android The current implementation only returns the DOCUMENT_ID instead of the full URI. Build the child URI using buildDocumentUriUsingTree. See https://developer.android.com/reference/android/provider/DocumentsContract#buildDocumentUriUsingTree(android.net.Uri,%20java.lang.String) Fixes fyne-io#2619
57b7b33
Resolved on develop and will be merged to release branch before v2.1.2
develop
Sorry, something went wrong.
640b699
No branches or pull requests
When trying to list the child of an URI (i.e. the content of the directory) which has the
content:
scheme on Android, the child URI are truncated.In my case the file picker returns a directory the URI :
And when listing the file within this directory with
storage.List()
, the children are missing half of their URI likeInstead of
Device (please complete the following information):
The text was updated successfully, but these errors were encountered: