Using the answer from here.
temp = list.files(pattern="*.csv")
for (i in 1:length(temp)) assign(temp[i], read.csv(temp[i]))
As the next step with a simple line, how is it possible to merge all read csv files/dataframes into one?
We suppose that all dataframes have the same column names.