I am using the CommaTextIO class to create csv files from a container which works great. However, there are certain times I need to create csv files without the fields enclosed in quotes but still have each field separated by a comma.
Example: CommaIO creates a record like:
"Apple","Banana","Cherry"
Would like to create the record as:
Apple, Banana, Cherry
Thought about using ASCIIO class to build the file and then rename it when done but thought there might be a more elegant way to do this. If anyone could give some guidance on this it would be greatly appreciated.