About 31,000,000 results
Open links in new tab
  1. Download a .zip file from the command line - Stack Overflow

    Feb 14, 2014 · Download a .zip file from the command line Asked 11 years, 8 months ago Modified 1 month ago Viewed 91k times

  2. Zip lists in Python - Stack Overflow

    I am trying to learn how to "zip" lists. To this end, I have a program, where at a particular point, I do the following: x1, x2, x3 = stuff.calculations(withdataa) This gives me three lists, x1, x...

  3. c# - Create normal zip file programmatically - Stack Overflow

    Mar 16, 2010 · I have seen many tutorials on how to compress a single file in c#. But I need to be able to create a normal *.zip file out of more than just one file. Is there anything in .NET that …

  4. For loop and zip in python - Stack Overflow

    Q1- I do not understand "for x, y in zip (Class_numbers, students_per_class)". Is it like a 2d for loop? why we need the zip? Can we have 2d loop with out zip function? Q2-I am not …

  5. windows - How to zip a file using cmd line? - Stack Overflow

    Aug 12, 2013 · 152 I want to zip a directory using the batch file command (Windows XP batch file). For example, if I want to unzip a file means I can use the jar -xf file.zip (java) bat file …

  6. In Python 3, why do I get "TypeError: 'zip' object is not …

    Several other things changed from Python 2 to Python 3 in a parallel manner; see How to use filter, map, and reduce in Python 3.

  7. How to add man and zip to "git bash" installation on Windows

    Here's another, slightly different, set of instructions to install zip for git bash on windows: Navigate to this sourceforge page Download zip-3.0-bin.zip In the zipped file, in the bin folder, find the …

  8. python - Download Returned Zip file from URL - Stack Overflow

    Feb 23, 2012 · If I have a URL that, when submitted in a web browser, pops up a dialog box to save a zip file, how would I go about catching and downloading this zip file in Python?

  9. How to create a zip archive of a directory? - Stack Overflow

    Dec 6, 2009 · How can I create a zip archive of a directory structure in Python? In a Python script In Python 2.7+, shutil has a make_archive function. from shutil import make_archive …

  10. 7-Zip command to create and extract a password-protected ZIP …

    On Mac/Linux to zip/unzip password protected zip files, I use: Zip: zip -P password -r encrypted.zip folderIWantToZip Unzip: unzip -P password encrypted.zip What are the …