Latest recipes tagged "tarfile"http://code.activestate.com/recipes/tags/tarfile/new/2012-07-04T00:57:37-07:00ActiveState Code RecipesExtract Multiple TAR Files & Directories (Python)
2012-07-04T00:57:37-07:00Stephen Chappellhttp://code.activestate.com/recipes/users/2608421/http://code.activestate.com/recipes/578191-extract-multiple-tar-files-directories/
<p style="color: grey">
Python
recipe 578191
by <a href="/recipes/users/2608421/">Stephen Chappell</a>
(<a href="/recipes/tags/archive/">archive</a>, <a href="/recipes/tags/commandline/">commandline</a>, <a href="/recipes/tags/old/">old</a>, <a href="/recipes/tags/tarfile/">tarfile</a>).
</p>
<p>Related to the popular <a href="http://code.activestate.com/recipes/442503/">recipe 442503</a>, this command-line program takes multiple TAR files or directories and can extract them in a batch operation. This is committed for archival to be run under Python 2.5 or later versions.</p>
tarfile.extractall with read access (Python)
2009-06-04T15:48:17-07:00Sridhar Ratnakumarhttp://code.activestate.com/recipes/users/4169511/http://code.activestate.com/recipes/576797-tarfileextractall-with-read-access/
<p style="color: grey">
Python
recipe 576797
by <a href="/recipes/users/4169511/">Sridhar Ratnakumar</a>
(<a href="/recipes/tags/tarfile/">tarfile</a>).
</p>
<p>Some tarballs have u-x set on directories .. this makes the program fail due to permissions. See <a href="http://bugs.python.org/issue6196" rel="nofollow">http://bugs.python.org/issue6196</a></p>