Writer (string) append on new line

Hey,
I’m working with Writer (String) and Store (string), each time I reach an n value of slices I write everything on the file.txt and clear the buffer, the Writer is on append so I can store the new spread on top of the old one.
Problem is append writes the first slice of the new spread on the same line of the old one.
There’s something I’m missing?

Hello, the append mode doesn’t automatically add a new line control character to your string, you have to do that yourself. So before you write the string, add a new line with + (String) at the end.

Yeah, I figured out a way to avoid that, I was just wandering if there was a solution in the node
Thanks!

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.