I'm using this example:
and I want to export the text file using intent, after save it.
How can I get the path of the saved file and open an intent to share it?
Thanks in advance for any tip.
[B4X] TextEditor - Save and load external files
This is a B4i and B4A example, which demonstrates various external files related tasks. The behavior is not exactly the same as the platforms capabilities and behavior are different. B4A Load external files, including online files, using ContentChooser. Save to an external target, using...
www.b4x.com
How can I get the path of the saved file and open an intent to share it?
B4X:
Wait For (FileHandler1.SaveAs(in, "text/plain", "NewFile.txt")) Complete (Success As Boolean)
If Success Then
< INTENT TO SHARED THE FILE ?? > '<- Here
End If
Thanks in advance for any tip.