Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
3answers
1k views

“Untar” file on iPhone

I'm writing an iPhone app which downloads a tar-gzipped file from a Webserver, then needs to unarchive this file so that it can be copied into the app's Documents folder. I'm using tar/gzip because I ...
3
votes
3answers
552 views

Why does Perl's Archive::Tar run out of memory?

I am using below Perl code to list the files in tar archive. The size of the tar archive is always about 15MB. my $file = shift; my $tar = Archive::Tar->new("$file"); my @lists = ...
2
votes
1answer
166 views

Why is Perl's IO:Compress::Adapter::Deflate running out of memory?

I'm trying to set the file permissions of files contained in a tarball with the following: print "Checking $tgz_file... "; my $edited = 0; my $tarball = Archive::Tar->new($tgz_file); my @items = ...
1
vote
2answers
233 views

On the fly zip or tar creation?

I may NOT bother with this but if its very simple i may consider it. The site i am working on by design is to hold hundreds of thousands of files. I dont know if we'll have only one download or ...
0
votes
1answer
35 views

How do I create a tar archive that will not expand to a subfolder?

I don't want to create a "flat" tarball that has no internal directory structure. But I want the top-level files to be "loose" rather than mirroring the directory structure they were on originally. ...
0
votes
2answers
416 views

Why does the tarball directory structure disappear when I use Perl's Archive::Tar?

I'm using a Perl script to modify some files inside a .tar, and the directory structure inside the resulting .tar disappears. Eliminating more and more code I've come as far as all that's required to ...