R regwbr Member Licensed User Longtime User Apr 7, 2012 #1 How would I write to a file 1 string at a time? Each write would add a line to the file. I open the file with "File.OpenOutput" I then thought I could use "File.WriteString", but that only writes to "new" files. Will adding the "append" option to "File.OpenOutput" be a possible solution? Thank you
How would I write to a file 1 string at a time? Each write would add a line to the file. I open the file with "File.OpenOutput" I then thought I could use "File.WriteString", but that only writes to "new" files. Will adding the "append" option to "File.OpenOutput" be a possible solution? Thank you
specci48 Well-Known Member Licensed User Longtime User Apr 7, 2012 #2 regwbr said: Will adding the "append" option to "File.OpenOutput" be a possible solution? Click to expand... That's exactly what append is used for. specci48 Upvote 0
regwbr said: Will adding the "append" option to "File.OpenOutput" be a possible solution? Click to expand... That's exactly what append is used for. specci48