Ported from a discussion on Slack - was hoping there might be a way to combine multiple CSV files at once that will ultimately be appended to each other. Current options are multiple CSV.read() statements or:
df = CSV.read(firstfile)
for file in rest
append!(df, CSV.File(file)
end