How you do this depends on how you want to store the data frames. You can load all of the data frames into a list with code like this:
PATH <- "Data/NewFiles/"
FILES <- list.files(PATH, "csv$")
DataList <- lapply(FILES, function(Nm) read.csv(paste0(PATH, Nm))