0
votes
1answer
18 views
How to download/checkout a project from Google Code in Windows?
How do I download a ZIP file of an entire project from Google Code when there are no prepared downloads available?
This is what I see on the checkout page:
Command-line access
Use this command …
0
votes
1answer
28 views
Encrypting zip files with a password based on Zip 2.0 encryption
Hi,
I am trying to zip and encrypt files in Java (1.6) with a password based on the earlier Zip 2.0 encryption. I have used AES 256 bit encrytpion to encrypt zip files with password and have …
1
vote
2answers
95 views
How to decompress the *.TGZ file without changing the orginal file?
I decompress the file using following command:
gunzip -f test.TGZ
This gave me test.tar file but I lost the test.TGZ file. Is there anyway to keep the original file?
EDIT & Update :
I am …
1
vote
0answers
28 views
Compressing a folder periodically [closed]
Hi Everyone..
I need to compress a specific folder on an hourly-basis and move it to another destination folder. I need guidance on how I should do this.
I'm working in a windows environment.
…
0
votes
2answers
39 views
exploring zip archive by PHP
this my code
$z = new ZipArchive();
if ($z->open('file.zip')) {
for ($i=0; $i<$z->numFiles;$i++) {
$aZipDtls = $z->statIndex($i);
echo …
0
votes
1answer
26 views
Install zip extension for PHP --enable-zip on Mac OS X
I'd like to install the following but am not sure where I should add --enable-zip? Is there more to it than putting it in php.ini ?
http://www.php.net/manual/en/zip.installation.php
1
vote
2answers
33 views
libzip corrupting PNG files when compressed on iPhone device, but not in Simulator
Hi,
I've inherited a project that at some point creates a zip file, adds an XML file to the zip and then adds a number of PNG files to the same archive. All works fine on the simulator, but whenever …
0
votes
2answers
23 views
OEM zip licensing
Hi, does anyone know of a good OEM zip utility that we can use to integrate into our release package. We dont want to use GNU (GPL).
Cheers
Pete
0
votes
3answers
38 views
Unziping a zip file with boost and Visual C++ 2005?
Is there a library in boost that can be used to unzip a zip file?
1
vote
5answers
34 views
Why odt file can not be opened by zip but can be opened by open office?
I think odt files are ziped files.
Why odt file can not be opened by zip but can be opened by open office?
And a zip file not complete can also be unziped??
Who is familiar with zip format?
1
vote
2answers
92 views
Need a zip of Python 2.6 for windows
Not the source codes, thats the only thing i seem to find. I can't install py2.6 because it would overtake 2.5 and cause mayor mess in my pc.
0
votes
2answers
25 views
Unziping files to existing directories in Visual Studio 2005 C++?
I have a possibly pre-existing directory structure on the client machine server that looks like this:
-|
+css
|-ABC
|-EFG
|-XYZ
+img
|-ABC
|-EFG
|-XYZ
+js
|-ABC
|-EFG
|-XYZ
+htm
…
2
votes
2answers
64 views
Unzip files created with WinZIP with I18N file names?
People these days create their ZIP archives with WinZIP, which allows for internationalized (i.e. non-latin: cyrillic, greek, chinese, you name it) file names.
Sadly, trying to unpack such file …
1
vote
1answer
37 views
What is the best and most universal way to unzip an archive using php 5?
I'm writing software that requires the user to have php 5, but nothing else in the way of extra apache modules, etc.
Is there a vanilla php5 method for unzipping an archive?
I found this:
…
6
votes
3answers
232 views
JPG+Zip File Combination Problem with Zip Format
Hopefully you've heard of the neat hack that lets you combine a JPG and a Zip file into a single file and it's a valid (or at least readable) file for both formats. Well, I realized that since JPG …
