Hi Everyone.
Quick question.
It appears as if the TextoutputStream.Append has been deprecated.
So how do we append lines to a file now?
Regards
Hi Everyone.
Quick question.
It appears as if the TextoutputStream.Append has been deprecated.
So how do we append lines to a file now?
Regards
From the official docs it says WriteLine does the same:
https://documentation.xojo.com/api/files/textoutputstream.html#textoutputstream-writeline
Use .Open
instead of .Append
to open an existing file for appending.