I don't know why I seem to be stuck on something so. seemingly, simple.
I have a set of Excel csv files. Call them f1.csv, f2.csv.... fn.csv.
They are all in the same format meaning that they all have the same header).
What I want to do is to read them all and concatenate them as I read them into one big file with a single header.
I have tried OpenAppend, Write, Import and Export and nothing seems to be working.
Could someone please provide me with a function such that I could use it as follows:
contatenate[singleFilename,#]& /@ {f1.csv,f2.csv,....fn.csv}
The concatemate function would create a CSV file that would have the common header and all the rows of all the fx.csv files
I apologize in advance if this is trivial (which I know it must be) but that I somehow seem to be stock on.