File: getZip.Rd

package info (click to toggle)
hmisc 5.2-4-2
  • links: PTS, VCS
  • area: main
  • in suites: forky
  • size: 4,044 kB
  • sloc: asm: 28,905; f90: 590; ansic: 415; xml: 160; fortran: 75; makefile: 2
file content (34 lines) | stat: -rw-r--r-- 795 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
\name{getZip}
\alias{getZip}
\title{Open a Zip File From a URL}
\description{
  Allows downloading and reading of a zip file containing one file
}
\usage{
getZip(url, password=NULL)
}
\arguments{
  \item{url}{either a path to a local file or a valid URL.}
  \item{password}{required to decode password-protected zip files}
}
\value{
  Returns a file O/I pipe.
}
\details{
  Allows downloading and reading of zip file containing one file.
  The file may be password protected.  If a password is needed then one will be requested unless given.

  Note: to make password-protected zip file z.zip, do zip -e z myfile
}
\seealso{
  \code{\link{pipe}}
}
\examples{
\dontrun{
read.csv(getZip('http://test.com/z.zip'))
}
}
\author{Frank E. Harrell}
\keyword{file}
\keyword{IO}
\concept{compressed file}