As the subject suggests, I'm trying to write a list of data frames into a new folder so, that the original name stays same as the original file (and so that the original files don't get overwritten in the original folder!). Tried the code below, but simply didn't get the syntax working:
sapply(names(points_calculated),
function (x) write_csv(points_calculated[[x]], file=paste("./ExperimentFolder/PointsFolder", x)))