0
votes
2answers
38 views
download a zip file to a local drive and extract all files to a destination folder using python 2.5
hi,
I am trying to download a zip file to a local drive and extract all files to a destination folder.
so i have come up with solution but it is only to "download" a file from a …
1
vote
3answers
227 views
how to unzip a encrypted zip file
in winzip we can able to encrypt a file using some keys.In my android application i using the encrypted zip file.i know the way for unzip a file(without encryption).but how can i u …
1
vote
2answers
43 views
Unzip NSData without temporary file
Hello, I've found a couple of libs (LiteZip and ZipArchive) that allow to unzip files on iPhone. But both of them require an input as a file. Is there a library that allows to dire …
0
votes
2answers
60 views
Unzip part of a file using python gzip module
Hi,
I am trying to unzip a gzipped file in Python using the gzip module. The pre-condition is that, I get 160 bytesof data at a time, and I need to unzip it before I request for t …
1
vote
3answers
46 views
zip64 support in php?
I have a file downloaded by a cron that is in zip64 format.
How can I unzip it using php or via a php cmd()?
2
votes
3answers
97 views
How can I extract a compressed archive in Perl?
I need to allow users to upload a zip file via a web form. The server is running Linux with an Apache web server. Are there advantages to using a module like Archive::Zip to extr …
0
votes
4answers
316 views
zcat won’t unzip files properly
Hi,
I need to unzip a compressed file on the fly in my program. It works when I try it on my own linux computer, but for some reason the school computers fail whenever I tell the …
0
votes
0answers
43 views
Unrar Command prompt [closed]
Is there any good unrar tool for command prompt which also supports zip? and supports parts?
Thanks.
0
votes
4answers
105 views
Problem while opening a zip file
I have a problem when opening a zip file. I am using this code to zip the file:
public static string Zip_File(string soruce , string target)
{
try
…
0
votes
3answers
735 views
ASP.NET Zip File - Download and Then Remove Temp zipFile
Hi ,
i got a download page , there 3 download option , Word , Zip , PDF .. and there is a folder in there so many .DOC file. I want when a user click ZIP option in page , ASP.NET …
1
vote
1answer
81 views
Linux: Unzip an archive containing files with the same name.
I was sent a zip file containing 40 files with the same name.
I wanted to extract each of these files to a seperate folder OR extract each file with a different name (file1, file2, …
1
vote
3answers
258 views
How to overwrite existing files using Rubyzip lib
I'm attempting to unzip a file with several files that may or may not already exist in the target directory. It seems the default behavior is to throw an exception if the file alre …
1
vote
5answers
194 views
unzip specific extension only
I have a a directory with zip archives
the zip archives contain .jpg, .png, .gif images
I want to unzip each archive taking the images only and putting them in a folder with the na …
2
votes
3answers
320 views
iPhone SDK - Adding zipped content in resources and then unzipping into Documents folder
Hi,
I have some resources (zipped) that needs to be shipped with my iphone application. When the app launches for the first time, this zipped file needs to be moved/copied to the …
1
vote
3answers
103 views
Creating and serving zipped files with php
Hi everyone. I'm trying to use the following code to create a zip file from a directory and serve it to the user via an http download:
// write the file
file_put_contents($path …
