View source: R/postdl_templates.R
unziptar_dlfiles | R Documentation |
Unzip/Untar downloaded files. Keeps the original zip file
unziptar_dlfiles(dlfiles, chmod = FALSE)
dlfiles |
A data.frame of files by platform and indicating whether they were processed |
chmod |
change the mode of the unarchived file/files to "755" so they are executable on unix like systems. |
Returns a list of character vectors indicating files processed
## Not run: ymlfile <- system.file("exdata", "sampleapp.yml", package = "binman") trdata <- system.file("testdata", "test_dlres.Rdata", package = "binman") load(trdata) testthat::with_mock( `httr::GET` = function(...) { test_llres }, `base::dir.create` = function(...) { TRUE }, `utils::unzip` = function(zipfile, ...) { zipfile }, procyml <- process_yaml(ymlfile) ) procyml ## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.