If I'm writing data to a file, and I want all new records to write, starting at the first position of a new line, how would I do this?
i.e.
record 1 .....................
record 2 .....................
record 3 .....................
etc...
Currently, the records are writing as follows:
i.e.
record 1 .....................record 2 ....................record 3 ......................
How do I get the linefeed in there...
i.e.
record 1 .....................
record 2 .....................
record 3 .....................
etc...
Currently, the records are writing as follows:
i.e.
record 1 .....................record 2 ....................record 3 ......................
How do I get the linefeed in there...