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
|
\name{extract.zip}
\alias{extract.zip}
\docType{data}
\title{ Unzip archives in a specified directory }
\description{
\code{extract.zip} extracts the files from a .zip archive in a
specific directory.
}
\usage{
extract.zip(file, extractpath = dirname(file)[1])
}
\arguments{
\item{file}{ A file name. }
\item{extractpath}{ A path to define where the files are to be extracted. }
}
\value{
\code{ Success is indicated by returning the directory in which the
files have been extracted. If it fails, it returns an empty
character string. }
}
\author{
Audrey Kauffmann
Maintainer: Jose Marugan <jcmarca@ebi.ac.uk>
}
\keyword{datasets}
|