Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

8
votes
4answers
139 views

Determine whether any files have been added, removed, or modified in a directory

I'm trying to write a Python script that will get the md5sum of all files in a directory (in Linux). Which I believe I have done in the code below. I want to be able to run this to make sure no ...
5
votes
1answer
146 views

Does Python's `tarfile` module store the archives it's building in memory?

I'm working in a memory constrained environment where I need to make archives of SQL dumps. If I use python's built in tarfile module is the '.tar' file held in memory or written to disk as it's ...
4
votes
1answer
145 views

Python tarfile - overwrite existing read-only files?

I'm attempting to use Python's tarfile module to extract a tar.gz archive. I'd like the extraction to overwrite any target files it they already exist - this is tarfile's normal behaviour. However, ...
3
votes
1answer
69 views

Python: Renaming member in a tar file during extraction

Premise I have a directory /foo/bar I have a tar file containing the directory baz Problem Extracting the contents of baz in the archive to /foo/bar Example The archive contains: baz/ ...
2
votes
1answer
89 views

How can I process a tarfile with a Python multiprocessing pool?

I'm trying to process the contents of a tarfile using multiprocessing.Pool. I'm able to successfully use the ThreadPool implementation within the multiprocessing module, but would like to be able to ...
2
votes
1answer
79 views

Python TarFile with bz2 data

Im trying to download a bz2 compressed tarfile and create a tarfile.TarFile object from it. import MyModule import StringIO import tarfile tardata = StringIO.StringIO() ...
2
votes
2answers
418 views

Organizing files in tar bz2 file with python

I have about 200,000 text files that are placed in a bz2 file. The issue I have is that when I scan the bz2 file to extract the data I need, it goes extremely slow. It has to look through the entire ...
2
votes
1answer
175 views

Why does tarfile.extractall ignore errors by default?

Python's tarfile module ignores errors during extraction by default, unless errorlevel is set to either 1 or 2 (or debug to 1 if only error messages need to be printed). Try doing a mkdir /tmp/foo ...
1
vote
2answers
283 views

Get python tarfile to skip files without read permission

I'm trying to write a function that backs up a directory with files of different permission to an archive on Windows XP. I'm using the tarfile module to tar the directory. Currently as soon as the ...
1
vote
3answers
87 views

tarfile: determine compression of an open tarball

I am on working on a Python script which is supposed to process a tarball and output new one, trying to keep the format of the original. Thus, I am looking for a way to lookup the compression method ...
1
vote
3answers
1k views

How to create full compressed tar file using Python?

how can I create a .tar.gz file which compress the data as much tar can...
1
vote
4answers
1k views

How to determine if data is valid tar file

My upload form expects a tar file and I want to check whether the uploaded data is valid. The tarfile module supports is_tarfile(), but expects a filename - I don't want to waste resources writing the ...
0
votes
2answers
99 views

tarfile and user,group information problem

I am using python tarfile module to extract files from a *.tgz file. Here what I use: import tarfile tar = tarfile.open("some.tar") tar.extractall(".") tar.close() Assume "some.tar" contents as: ...
0
votes
2answers
116 views

Extracting file from tarfile with only basename using Python

I have a 'tafile' which contains files with complete path '/home/usr/path/to/file'. When I extract the file to the curent folder it creates the complete path recursively. Is there a way that I can ...
0
votes
4answers
151 views

Python tar: existence of a given file

I would like to verify the existence of a given file in a tar with python before get it as a file-like object. I've tried with isreg() but probably I do something wrong. Someone can help me or have a ...
0
votes
2answers
112 views

Python tarfile module overwrites existing files during extraction - how to disable it?

Is there a way prevent tarfile.extractall (API) from overwriting existing files? By "prevent" I mean ideally raising an exception when an overwrite is about to happen. The current behavior is to ...