extract_files.RdExtract files from a zip archive.
extract_files(path, fnames = ".*", ..., verbose = TRUE)
| path | The path to the zipfile. | 
|---|---|
| fnames | A vector of file names in the archive to extract. Supports regex. | 
| ... | Other arguments passed to  | 
| verbose | If  | 
A vector of extracted file paths.
if (FALSE) { f = download_file("ftp://ftp.wildlife.ca.gov/Delta%20Smelt/SKT.zip") extract_files(f, "SKT", exdir = tempdir()) }