This is an R script for reading all CSV's in a specified folder.
library(readr) list.files(pattern="*.csv") %>% lapply(read_csv) %>% bind_rows()