iOS Question Append text in a file

giagia

Member
Licensed User
Yes.
Two options:
1. Read the file with File.ReadString, add the new line and write it back.
2. Open an OutputStream with File.OpenOutput in append mode and write to this stream.
Can you write me a small example of code?
 
Upvote 0
Top