How to work with large number of small files: Difference between revisions

From RCSWiki
Jump to navigation Jump to search
Line 4: Line 4:


* to be continued.....
* to be continued.....
<pre>
$ fuse-zip --help
....
$ fuse-zip -r archive.zip mountpoint
$ fusermount -u mountpoint
</pre>


= From Python =
= From Python =

Revision as of 19:44, 28 July 2022

Background

Mounting Zip-arichives with fuse-zip

  • to be continued.....
$ fuse-zip --help
....

$ fuse-zip -r archive.zip mountpoint

$ fusermount -u mountpoint

From Python

Working with files inside a TAR archive

  • tarfile module:
https://www.askpython.com/python-modules/tarfile-module
https://stackoverflow.com/questions/27220376/python-read-file-within-tar-archive

Links

How-Tos