Append to CSV file with CSVParserFunctions WriteCSVFile
Hi,
Does anybody know how to append to a CSV file? If I use this
var paramsCSV = {
path: sFile /* STRING */,
data: infoTab /* INFOTABLE */,
fileRepository: "P116SQLXMLFileRepository" /* THINGNAME */,
withHeader: false/* BOOLEAN */
};
// no return
Resources["CSVParserFunctions"].WriteCSVFile(paramsCSV);
I always get a new file each time. I actually want to append to the file each time. There seems to be no option in the params to tell it to append.

