active questions tagged zip - Stack Overflow most recent 30 from stackoverflow.com 2009-12-11T20:10:28Z http://stackoverflow.com/feeds/tag/zip http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1886310/compressing-a-folder-periodically 1 Compressing a folder periodically [closed] unknown (google) 2009-12-11T07:01:07Z 2009-12-11T07:05:01Z <p>Hi Everyone..</p> <p>I need to compress a specific folder on an <strong>hourly-basis</strong> and move it to another destination folder. I need guidance on how I should do this.</p> <p>I'm working in a <strong>windows environment</strong>.</p> <p>Thanks in advance</p> http://stackoverflow.com/questions/1820291/jpgzip-file-combination-problem-with-zip-format 6 JPG+Zip File Combination Problem with Zip Format Tom Ritter 2009-11-30T14:55:04Z 2009-12-10T19:12:32Z <p>Hopefully you've heard of the <a href="http://linux-hacks.blogspot.com/2009/02/theory-behind-hiding-zipped-file-under.html" rel="nofollow">neat hack</a> 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 lets arbitrary stuff at the end, and ZIP at the beginning, you could stick one more format in there - in the middle. For the purposes of this question, assume the middle data is arbitrary binary data guarenteed not to conflict with the JPG or ZIP formats (meaning it doesn't contain the magic zip header 0x04034b50). Illustration:</p> <pre><code>0xFFD8 &lt;- start jpg data end -&gt; 0xFFD9 ... ARBITRARY BINARY DATA ... 0x04034b50 &lt;- start zip file ... EOF </code></pre> <p>I am catting like this:</p> <blockquote> <p>cat "mss_1600.jpg" filea fileb filea fileb filea fileb filea fileb filea fileb filea fileb filea fileb filea fileb filea fileb filea fileb filea fileb filea fileb filea fileb "null.bytes" "randomzipfile.zip" > temp.zip</p> </blockquote> <p>This produces a 6,318 KB file. It <strong>does not</strong> open in 7-Zip. However, when I cat one less 'double' (so instead of 13 filea and b's, 12):</p> <blockquote> <p>cat "mss_1600.jpg" filea fileb filea fileb filea fileb filea fileb filea fileb filea fileb filea fileb filea fileb filea fileb filea fileb filea fileb filea fileb "null.bytes" "randomzipfile.zip" > temp.zip</p> </blockquote> <p>It produces a 5,996 KB file that <strong>does</strong> open in 7-Zip.</p> <p>So I know my arbitrary binary data doesn't have the magic Zip File Header to screw it up. I have reference files of the <a href="http://ritter.vg/misc/stuff/so/working" rel="nofollow">working jpg+data+zip</a> and the <a href="http://ritter.vg/misc/stuff/so/nonworking" rel="nofollow">non-working jpg+data+zip</a> (save-as cause the browser thinks they're images, and add the zip extensions yourself).</p> <p>I want to know why it fails with 13 combinations and doesn't with 12. For bonus points, I need to get around this somehow.</p> http://stackoverflow.com/questions/1510791/how-to-create-zip-files-with-specific-encoding 0 How to create ZIP files with specific encoding Olivier 2009-10-02T17:11:17Z 2009-12-10T01:15:59Z <p>Hello,</p> <p>On my Linux server I have some files with accented names (test-éàïù.zip). When I add them to a new ZIP file using 7zip command-line tool, the charset/encoding information is not saved and when opened on a Windows computer, the archive does not correctly display filenames. I know that 7zip creates Zip V1.0 archives, not 2.0. Maybe the charset is limited to MSDos charset ? How could I specify an encoding using 7zip or another zip tool, in order to get portable archives ?</p> <p>Thanks :)</p> http://stackoverflow.com/questions/1872256/exploring-zip-archive-by-php 0 exploring zip archive by PHP moustafa 2009-12-09T07:44:18Z 2009-12-09T09:18:03Z <p>this my code</p> <pre><code>$z = new ZipArchive(); if ($z-&gt;open('file.zip')) { for ($i=0; $i&lt;$z-&gt;numFiles;$i++) { $aZipDtls = $z-&gt;statIndex($i); echo $aZipDtls['name'].'&lt;br&gt;'; } } </code></pre> <p>it returns </p> <pre><code>docs/ docs/INSTALL.html docs/auth_api.html docs/install/ docs/install/index.htm </code></pre> <p>but i want it return a files tree like that</p> <pre><code>docs/ -INSTALL.html -auth_api.html install -index.htm </code></pre> <p>to make it ul and li and i want to do this do use the <a href="http://labs.abeautifulsite.net/projects/php/phpFileTree/phpFileTree-1.0.zip" rel="nofollow">PHP File Tree</a></p> http://stackoverflow.com/questions/1870003/install-zip-extension-for-php-enable-zip-on-mac-os-x 0 Install zip extension for PHP --enable-zip on Mac OS X ed209 2009-12-08T21:34:57Z 2009-12-08T21:41:05Z <p>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 ?</p> <p><a href="http://www.php.net/manual/en/zip.installation.php" rel="nofollow">http://www.php.net/manual/en/zip.installation.php</a></p> http://stackoverflow.com/questions/1489857/what-is-the-byte-signature-of-a-password-protected-zip-file 1 What is the byte signature of a password-protected ZIP file? frankadelic 2009-09-28T23:30:22Z 2009-12-08T20:37:40Z <p>I've read that ZIP files start with the following bytes:</p> <pre><code>50 4B 03 04 </code></pre> <p>Reference: <a href="http://www.garykessler.net/library/file%5Fsigs.html" rel="nofollow">http://www.garykessler.net/library/file_sigs.html</a></p> <p>Question: Is there a certain sequence of bytes that indicate a ZIP file has been password-protected?</p> http://stackoverflow.com/questions/1866885/libzip-corrupting-png-files-when-compressed-on-iphone-device-but-not-in-simulato 1 libzip corrupting PNG files when compressed on iPhone device, but not in Simulator unknown (google) 2009-12-08T13:12:18Z 2009-12-08T14:19:39Z <p>Hi,</p> <p>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 I run the same code on the device itself the resulting png files are altered and unopenable when opened on my Mac. </p> <p>They still appear to be png files, but the 'corrupt' export ones are slightly larger than the true files are, and hex dumps show the contents differ drastically. Headers are preserved though...</p> <p>Original:</p> <pre><code>00000000 89 50 4e 47 0d 0a 1a 0a 00 00 00 0d 49 48 44 52 |.PNG........IHDR| 00000010 00 00 00 6d 00 00 00 75 08 06 00 00 00 44 7d 6f |...m...u.....D}o| 00000020 a0 00 00 00 19 74 45 58 74 53 6f 66 74 77 61 72 |?....tEXtSoftwar| 00000030 65 00 41 64 6f 62 65 20 49 6d 61 67 65 52 65 61 |e.Adobe ImageRea| 00000040 64 79 71 c9 65 3c 00 00 38 32 49 44 41 54 78 da |dyq?e&lt;..82IDATx?| </code></pre> <p>Corrupt:</p> <pre><code>00000000 89 50 4e 47 0d 0a 1a 0a 00 00 00 04 43 67 42 49 |.PNG........CgBI| 00000010 30 00 20 02 10 f3 44 7c 00 00 00 0d 49 48 44 52 |0. ..?D|....IHDR| 00000020 00 00 00 6d 00 00 00 75 08 06 00 00 00 44 7d 6f |...m...u.....D}o| 00000030 a0 00 00 00 19 74 45 58 74 53 6f 66 74 77 61 72 |?....tEXtSoftwar| 00000040 65 00 41 64 6f 62 65 20 49 6d 61 67 65 52 65 61 |e.Adobe ImageRea| 00000050 64 79 71 c9 65 3c 00 00 38 65 49 44 41 54 ed bd |dyq?e&lt;..8eIDAT??| </code></pre> <p>(I appreciate a small chunk of the file header is not very helpful but the intention is to show that the corruption occurs within the PNG and not the ZIP itself.)</p> <p>So I guess what I'm asking is whether anyone has experienced anything like this before? I just tried using the following wrapper <a href="http://www.flyblog.info/catprogramming/202.html" rel="nofollow">http://www.flyblog.info/catprogramming/202.html</a> and experienced the same issue, so am guessing its libzip itself causing the issue?</p> <p>Does anyone have a simple, tried and tested method for adding files to a zip file on the Ipod that I can try and swap in?</p> <p>If it helps, here is the code that creates the zip:</p> <pre><code>ZipArchive* zip = [[ZipArchive alloc] init]; BOOL ret = [zip CreateZipFile2: zipPath]; NSMutableSet *imageNames = [NSMutableSet set]; [curAlbum collectImageNames:imageNames]; for (NSString *imageName in imageNames) { NSString *imagePath = [[NSBundle mainBundle] pathForResource:imageName ofType:@""]; NSLog(imagePath); ret = [zip addFileToZip:imagePath newname:@"test.png"]; } [zip release]; </code></pre> <p>Any advice appreciated :-)</p> http://stackoverflow.com/questions/1859452/oem-zip-licensing 0 OEM zip licensing unknown (google) 2009-12-07T11:32:25Z 2009-12-07T12:52:28Z <p>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).</p> <p>Cheers Pete</p> http://stackoverflow.com/questions/1675535/zip64-support-in-php 1 zip64 support in php? Traveling_Monk 2009-11-04T17:50:36Z 2009-12-06T12:41:36Z <p>I have a file downloaded by a cron that is in zip64 format. </p> <p>How can I unzip it using php or via a php cmd()? </p> http://stackoverflow.com/questions/1832650/unzip-files-created-with-winzip-with-i18n-file-names 2 Unzip files created with WinZIP with I18N file names? alamar 2009-12-02T12:34:50Z 2009-12-06T12:39:30Z <p>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.</p> <p>Sadly, trying to unpack such file causes trouble: UNIX unzip creates garbage-named files and dirs like "®£¤ ©¤¥èì". Java and its jar command fails miserably on such archives.</p> <p>Is there a passable way to unpack such files programmatically? UNIX or Java.</p> http://stackoverflow.com/questions/291406/extract-files-from-zip-file-with-vbscript 6 Extract files from zip file with VBScript Tester101 2008-11-14T21:03:22Z 2009-12-06T12:36:55Z <p>When extracting files from a zip file I was using the following.</p> <pre><code>Sub Unzip(strFile) ' This routine unzips a file. NOTE: The files are extracted to a folder ' ' in the same location using the name of the file minus the extension. ' ' EX. C:\Test.zip will be extracted to C:\Test ' 'strFile (String) = Full path and filename of the file to be unzipped. ' Dim arrFile arrFile = Split(strFile, ".") Set fso = CreateObject("Scripting.FileSystemObject") fso.CreateFolder(arrFile(0) &amp; "\ ") pathToZipFile= arrFile(0) &amp; ".zip" extractTo= arrFile(0) &amp; "\ " set objShell = CreateObject("Shell.Application") set filesInzip=objShell.NameSpace(pathToZipFile).items objShell.NameSpace(extractTo).CopyHere(filesInzip) fso.DeleteFile pathToZipFile, True Set fso = Nothing Set objShell = Nothing End Sub 'Unzip </code></pre> <p>This was working, but now I get a "The File Exists" Error.<br> Any ideas or alternatives?</p> http://stackoverflow.com/questions/1817925/how-to-identify-an-ooxml-file 0 How to identify an OOXML file? jwaddell 2009-11-30T04:59:57Z 2009-12-05T04:45:50Z <p>I need to be able to identify that a given file is an OOXML file based on the contents of the file, and not on the file's extension.</p> <p>OOXML files are really a collection of XML and text files in a zip container, which means that I cannot use the file's magic number as it will just indicate that it is a zip file.</p> <p>So what I'm really asking is <strong>are there any files that are <em>required</em> to be present in an OOXML container?</strong> If so the presence of that file in a zip container indicates that it is likely to be an OOXML file, and the absence of that file indicates that it definitely is <strong>not</strong> an OOXML file.</p> <p>This question is the OOXML version of <a href="http://stackoverflow.com/questions/1817908/how-to-identify-an-odf-file">this ODF question</a>. </p> http://stackoverflow.com/questions/1843633/unziping-a-zip-file-with-boost-and-visual-c-2005 0 Unziping a zip file with boost and Visual C++ 2005? leeand00 2009-12-03T22:55:31Z 2009-12-04T16:45:36Z <p>Is there a library in boost that can be used to unzip a zip file?</p> http://stackoverflow.com/questions/1838719/why-odt-file-can-not-be-opened-by-zip-but-can-be-opened-by-open-office 1 Why odt file can not be opened by zip but can be opened by open office? bruce dou 2009-12-03T09:23:08Z 2009-12-04T10:15:56Z <p>I think odt files are ziped files.</p> <p>Why odt file can not be opened by zip but can be opened by open office?</p> <p>And a zip file not complete can also be unziped??</p> <p>Who is familiar with zip format?</p> http://stackoverflow.com/questions/1835930/need-a-zip-of-python-2-6-for-windows 1 Need a zip of Python 2.6 for windows terabytest 2009-12-02T21:27:07Z 2009-12-03T00:07:31Z <p>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.</p> http://stackoverflow.com/questions/1833888/unziping-files-to-existing-directories-in-visual-studio-2005-c 0 Unziping files to existing directories in Visual Studio 2005 C++? leeand00 2009-12-02T16:04:12Z 2009-12-02T22:30:52Z <p>I have a possibly pre-existing directory structure on the client machine server that looks like this:</p> <pre><code>-| +css |-ABC |-EFG |-XYZ +img |-ABC |-EFG |-XYZ +js |-ABC |-EFG |-XYZ +htm |-ABC |-EFG |-XYZ </code></pre> <p>When we send our customers updates to their e-commerce websites we send them in a zip file, which has the following structure:</p> <pre><code>-| +css |-UniqueDirectory +img |-UniqueDirectory +js |-UniqueDirectory +htm |-UniqueDirectory </code></pre> <p>...where UniqueDirectory is always the same name.</p> <p>That being said, is there a way using Visual C++ 2005 that a program could be written to unzip the zip file that we send the customer into the existing directory without overwriting any of the existing directories (excluding the UniqueDirectory of course, that can and should be overwritten). </p> <p>The end result after the file being unzipped on the client machine should be:</p> <pre><code>-| +css |-ABC |-EFG |-UniqueDirectory |-XYZ +img |-ABC |-EFG |-UniqueDirectory |-XYZ +js |-ABC |-EFG |-UniqueDirectory |-XYZ +htm |-ABC |-EFG |-UniqueDirectory |-XYZ </code></pre> <p>Can this be done using C++? My clients don't possess the technical skill involved to just unzip the files to the correct directories. They also don't necessarily want to install an unzipping program.</p> <p>Would it require an external library? Preferably I'd like to do this using just libraries from Visual C++ 2005, but if an external library is required I'd like to know what it is called.</p> http://stackoverflow.com/questions/1829837/what-is-the-best-and-most-universal-way-to-unzip-an-archive-using-php-5 1 What is the best and most universal way to unzip an archive using php 5? Citizen 2009-12-02T00:07:31Z 2009-12-02T03:13:58Z <p>I'm writing software that requires the user to have php 5, but nothing else in the way of extra apache modules, etc.</p> <p>Is there a vanilla php5 method for unzipping an archive?</p> <p>I found this:</p> <p><a href="http://nz2.php.net/manual/en/function.ziparchive-extractto.php" rel="nofollow">http://nz2.php.net/manual/en/function.ziparchive-extractto.php</a></p> <p>But can everyone using php 5 use this? No extra modules necessary?</p> http://stackoverflow.com/questions/1112468/how-do-i-zip-a-whole-folder-tree-in-unix-but-only-certain-files 5 how do I zip a whole folder tree in unix, but only certain files? cosmicbdog 2009-07-10T23:47:29Z 2009-11-30T14:03:12Z <p>Hi everyone,</p> <p>I've been stuck on a little unix command line problem.</p> <p>I have a website folder (4gb) I need to grab a copy of, but just the .php, .html, .js and .css files (which is only a couple hundred kb). </p> <p>I'm thinking ideally, there is a way to zip or tar a whole folder but only grabbing certain file extensions, while retaining subfolder structures. Is this possible and if so, how?</p> <p>I did try doing a whole zip, then going through and excluding certain files but it seemed a bit excessive.</p> <p>I'm kinda new to unix.</p> <p>Any ideas would be greatly appreciated.</p> http://stackoverflow.com/questions/1804595/zip3-0-exclude-file-list 0 Zip3.0 exclude file list unknown (yahoo) 2009-11-26T16:21:48Z 2009-11-30T08:42:11Z <p>Does <a href="http://www.info-zip.org/Zip.html" rel="nofollow">Info-Zip</a>'s latest release Zip3.0 support exclude list file? As in, can one pass a file(containing names of the files to be excluded) name as a parameter to zip? I could see that one can pass only exclude patterns as arguments. Is there any limit on the number of exclude patterns that one can pass?</p> http://stackoverflow.com/questions/1817908/how-to-identify-an-odf-file 1 How to identify an ODF file? jwaddell 2009-11-30T04:52:09Z 2009-11-30T04:55:10Z <p>I need to be able to identify that a given file is an ODF file based on the contents of the file, and not on the file's extension.</p> <p>ODF files are really a collection of XML files in a zip container, which means that I cannot use the file's magic number as it will just indicate that it is a zip file.</p> <p>So what I'm really asking is <strong>are there any files that are <em>required</em> to be present in an ODF container?</strong> If so the presence of that file in a zip container indicates that it is likely to be an ODF file, and the absence of that file indicates that it definitely is <strong>not</strong> an ODF file.</p> http://stackoverflow.com/questions/1809007/best-way-to-detect-if-a-stream-is-zipped-in-java 1 Best way to detect if a stream is zipped in Java Fedearne 2009-11-27T14:10:44Z 2009-11-27T19:12:33Z <p>What is the best way to find out i <code>java.io.InputStream</code> contains zipped data?</p> http://stackoverflow.com/questions/1754352/download-multiple-files-as-zip-in-php 0 download multiple files as zip in php chandru_cp 2009-11-18T08:06:59Z 2009-11-27T15:32:06Z <p>How to download multiple files as zip in php?</p> http://stackoverflow.com/questions/1807944/wximage-to-zip-file-via-stream-possible 0 wxImage to Zip file via stream. Possible? Memb 2009-11-27T10:28:31Z 2009-11-27T10:44:50Z <p>I'm trying to write out a zip file using the wxZipOutputStream. The code is from this forum and works with the xml file (when I used wxTextOutputStream). Now, I'm trying to include an image file but the SaveFile function in the wxImage class expects a class wxOutputStream but wxTextOutputStream/wxDataOutputStream have no base class so I can't compile it. I just want to write out a wxImage and an xml file to a zip. how do I go about it? </p> <pre><code>//convert stream to zip file. wxFFileOutputStream out(m_loaded_filename.GetFullPath()); wxZipOutputStream zip(out); // wxTextOutputStream txt(zip); wxDataOutputStream txt(zip); zip.PutNextEntry("my.xml"); txt &lt;&lt; xmltext; ... ... ... //value is wxImage* //key is wxString zip.PutNextEntry(key); //filename if(value-&gt;IsOk()) { value-&gt;SaveFile(zip); //compiler throws error. } </code></pre> http://stackoverflow.com/questions/842744/blackberry-how-to-add-third-party-zip-files-to-project-in-eclipse 0 Blackberry - How to add third party zip files to project in Eclipse? itsteju 2009-05-09T05:15:01Z 2009-11-26T06:54:18Z <p>Hi, I am trying to add a third party zip file to my project while using Blackberry plugin for eclipse. Whenever I build the project,the zip files disappear. Is there any way to compile the project with third party zip files? Please help.</p> http://stackoverflow.com/questions/1758625/blackberry-unpack-zip-file 1 BlackBerry - Unpack Zip File harrywynn 2009-11-18T19:55:13Z 2009-11-26T06:49:30Z <p>I'm developing a BlackBerry application in which I need to unpack a zip file compressed with PKZIP. The package could have one file in it, or it could have 10; it will vary in each case. I know that the BlackBerry API has native support for GZip and Zlib, although I'm pretty sure that these methods aren't going to be helpful in my case. It doesn't look as if I can extract the individual files using these calls.</p> <p>I've tried JZlib (<a href="http://www.jcraft.com/jzlib/" rel="nofollow">http://www.jcraft.com/jzlib/</a>), which compiled fine, but again it doesn't look as if the methods contained therein are going to allow me to pull the individual files.</p> <p>It appears as if this is possible, as there's an application called Ziplorer (<a href="http://www.s4bb.com/software/ziplorer/" rel="nofollow">http://www.s4bb.com/software/ziplorer/</a>) that claims to do perform this exact procedure. How they're doing it, however, escapes me.</p> <p>So here I am after hours of Googling. I'm welcoming any insight into my problem with open arms.</p> http://stackoverflow.com/questions/1639562/blackberry-programmatically-extract-open-zip-file 1 Blackberry - Programmatically extract/open zip file KKlucznik 2009-10-28T19:34:38Z 2009-11-26T06:48:50Z <p>I have looked online with mixed results, but is there a way to programmatically extract a zip file on the BB? Very basic my app will display different encrypted file types, and those files are delivered in a zip file. My idea was to have the user browse to the file on their SDCard, select it, and I extract what i need as a stream from the file. is this possible?</p> http://stackoverflow.com/questions/58106/can-you-configure-windows-to-open-jar-files-like-zip-files-without-a-3rd-party-to 5 Can you configure Windows to open JAR files like ZIP files without a 3rd party tool? jodonnell 2008-09-12T01:28:54Z 2009-11-26T01:08:49Z <p>I'd like to be able to examine the contents of a JAR file without having to install Winzip or some other tool and without having to rename the file. Windows Explorer can open ZIP files just fine; is there some registry setting I can use to let it treat JARs like ZIPs?</p> http://stackoverflow.com/questions/1770386/freeware-zip-component-for-delphi-2010 0 Freeware ZIP component for Delphi 2010? FractalizeR 2009-11-20T13:21:18Z 2009-11-25T20:01:27Z <p>Hello. Do you know any free component, compatible with Delphi <strong>2010</strong> to manage ZIP archives (actually, only reading archive contents and extracting files required)?</p> <p>Please no betas.</p> <p>I thought about ZipForge from ComponentAce, but it's free only for personal use. No software distribution allowed.</p> http://stackoverflow.com/questions/758466/suggestions-for-a-daemon-that-accepts-zip-files-for-processing 1 suggestions for a daemon that accepts zip files for processing matt 2009-04-16T23:41:04Z 2009-11-25T19:28:50Z <p>im looking to write a daemon that:</p> <ul> <li>reads a message from a queue (sqs, rabbit-mq, whatever ...) containing a path to a zip file</li> <li>updates a record in the database saying something like "this job is processing"</li> <li>reads the aforementioned archive's contents and inserts a row into a database w/ information culled from file meta data for each file found</li> <li>duplicates each file to s3</li> <li>deletes the zip file</li> <li>marks the job as "complete"</li> <li>read next message in queue, repeat</li> </ul> <p>this should be running as a service, and initiated by a message queued when someone uploads a file via the web frontend. the uploader doesn't need to immediately see the results, but the upload be processed in the background fairly expediently.</p> <p>im fluent with python, so the very first thing that comes to mind is writing a simple server with twisted to handle each request and carry out the process mentioned above. but, ive never written anything like this that would run in a multi-user context. its not going to service hundreds of uploads per minute or hour, but it'd be nice if it could handle several at a time, reasonable. i also am not terribly familiar with writing multi-threaded applications and dealing with issues like blocking. </p> <p>how have people solved this in the past? what are some other approaches i could take?</p> <p>thanks in advance for any help and discussion!</p> http://stackoverflow.com/questions/1115563/what-is-zip-functional-programming 6 What is zip (functional programming?) Robert Gould 2009-07-12T08:28:34Z 2009-11-25T17:10:48Z <p>I recently saw some Clojure or Scala (sorry I'm not familiar with them) and they did zip on a list or something like that. What is zip and where did it come from ?</p>