Android API has DocumentFile
class. This class has canWrite()
method.
Suppose I called this method and it returned true
. Also suppose this object was representing "raw" file.
Now how can I do what it said I can?
Namely, how to write "Hello world" text into that file?
Thanks.