Forum Discussion
andrew_wait
3 years agoNew Contributor
I know I’m late to the party, but I had to do this, found this posting and then solved it this way
FileWriter allows you to append, so
6 columns > CSV (no headers) > FileWriter (overwrite)
33 columns > CSV (no headers) > FileWriter (append)
6 columns > CSV (no headers) > FileWriter (append)
This keeps all the CSV creation so you get the “” wrapping but allows you to build up the file as required.
NOTE: FileWriter is fussy about the target location for allowing append, but if you can jump that hurdle you should be fine