I am trying to implement "random access" write to a stream retrieved from Android Storage Access Framework.
In my scenario, I pick a file using OPEN_DOCUMENT intent which gives me a document URI. Then I can use the ContentResolver to openOutputStream. From that point though, I don't see a way to "seek" within the stream to write on a given position within the file.
Is there a way to achieve this (at least for local storage/SD card-based files)?