Hello
I want to write to a text file, but I want to overwrite the last line in the file. For example, I want to write HELLO WORLD into this file
First Line
Second Line
Last Line
so that I get
First Line
Second Line
HELLO WORLD
What's the easiest way to do this?
Thanks