Order of opening files when using tarfile.open() in Python -
i have simple question yet didn't manage find lot of information or understand well.
when open tarfile in python using tarfile.open()
method, how files in tarfile read? have tarfile data on people, each person has own folder , in folder data divided between different folders.
will files accessed depending on internal structure or there way determine file accessed next when use tarfile.extractfile()
?
thank in advance
internal structure. tar
stands "tape archive", , big design point ability work sequentially small ram, while writing (or reading from) sequential-access io device (also known tape): loading memory , processing in specific order not possible. thus, files extracted in order found in archive, reading archive in order.
Comments
Post a Comment