| decompressFolder | R Documentation | 
Decompress a folder
decompressFolder(sourceFileName, targetFolder)
sourceFileName | 
 Name of the file that must be decompressed.  | 
targetFolder | 
 Name of the folder that will hold the extracted data.  | 
Extracts all compressed files to a folder.
## Not run: 
# Create a folder with some data
dir.create("test")
data <- data.frame(x = runif(1000), y = 1:1000)
saveRDS(data, "test/data1.rds")
saveRDS(data, "test/data2.rds")
compressFolder("test", "data.zip")
decompressFolder("data.zip", "test2")
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.