R/zipComment.R

Defines functions getZipComment

Documented in getZipComment

getZipComment =
function(filename)
{
   if(is(filename, 'unzContentRef')) {
      h = filename
   } else {  
      h = as(filename, 'unzFileRef')   
      on.exit(unzClose(h))
   }

   .Call("R_unzGetGlobalComment", h)
}
statwonk/Rcompression documentation built on May 30, 2019, 10:43 a.m.