read_zip_url {jwutil} | R Documentation |
downloads zip file, and opens named file filename
, or the
single file in zip if filename
is not specified. FUN is a function,
with additional arguments to FUN given by ....
@details TODO: update from icd
package
read_zip_url(url, filename = NULL, FUN = readLines, ...) read.zip.url(url, filename = NULL, FUN = readLines, ...)
url |
character vector of length one containing URL of zip file. |
filename |
character vector of length one containing name of file to extract from zip. If not specified, and the zip contains a single file, then this single file will be used. |
FUN |
function used to process the file in the zip, defaults to
readLines. The first argument to FUN will be the path of the extracted
|
... |
further arguments to FUN |
read.zip.url
: Deprecated