Try to create a zip file from one folder using R.
It mentioned \"Rcompression\" package here: Creating zip file from folders
But I didn\'t find where I can downl
Make that
#Convertir todas las carpetas en .zip d <- "C:/Users/Eric/Documents/R/win-library/3.3" array <- list.files(d) for (i in 1:length(array)){ name <- paste0(array[i],".zip") zip(name, files = paste0(d,paste0("/",array[i]))) }