I'm wondering how I would go about adding headers to a csv file which has already been created. I am unfamiliar with ObjectScript.
For example if I were to use R, I would simply write..
test <- read.csv("file/path/example/Extract.csv", header=FALSE)
colnames(test) <- c("A","B","C","D","E")
I do not have embedded Python installed either as I would know how to do it in that also.
How could I mirror this in ObjectScript please?
My current create file method: