Displaying 1 result from an estimated 1 matches for "nes1948".
Did you mean:
es1988
2008 Oct 30
2
Small modification of zip.file.extract in utils?
Dear list,
I needed to extract a zip-archive, and found zip.file.extract in utils.
My only problem was the use of tempdir(), since I wanted to permanently
extract the archive at a fixed location for later use. My own fix was
simple, adding an extra parameter zipdir (without default), and within
the function change
tmpd <- tempdir()
to
tmpd = ifelse(missing(zipdir),tempdir(),zipdir)
This