Is here an easy way to append to a file instead of having to read it all in, add an extra line, then save it all back to disk again? thx
Easy way to append to file?
BlitzMax Forums/BlitzMax Programming/Easy way to append to file? I think you can use SeekStream with StreamSize to move the pointer to the end, use WriteLine (or whatever) then close the file.
sounds logical. Will test. Thanks.
You might need a "~n" as well.
Perfect, thanks all!