zip Questions

4

Solved

I'm trying to save Geopandas data frame into a shapefile that is written to a zipped folder directly. As any shapefile user knows, a shapefile is not a single file but rather a collection of files ...
Expressly asked 14/4, 2021 at 8:29

13

Solved

Just looking for a simple solution to downloading and unzipping .zip or .tar.gz files in Node.js on any operating system. Not sure if this is built in or I have to use a separate library. Any idea...
Orlop asked 25/4, 2012 at 1:13

2

Solved

I found example from SUN site (http://java.sun.com/developer/technicalArticles/Programming/compression/), but it returns BufferedOutputStream. But I would like to get ZipEntry file as InputStream a...
Adamski asked 4/9, 2011 at 12:9

4

Solved

i have checked everywhere online and stackoverflow and could not find a match specific to this issue. I am trying to extract a pdf file that is located in a zip file that is inside a zip file (nest...
Brahmanism asked 12/1, 2023 at 12:50

5

Solved

I made a game in Swift but I need to download .zip files on my website, and use the content (images) in game. Actually, I download the .zip file and store it in documents, and I need to unzip the f...
Stgermain asked 5/7, 2016 at 11:52

6

file_get_contents("zip:///a/b/c.zip") is returning NULL. How can I read unzipped contents of a zip file in PHP 5+?
Elledge asked 30/8, 2010 at 8:50

5

Solved

Say we have code like: File file = new File("zip1.zip"); ZipInputStream zis = new ZipInputStream(new FileInputStream(file)); Let's assume you have a .zip file that contains the following: zip1...
Bookworm asked 2/8, 2012 at 19:3

9

What's the easiest way to zip, say 2 files, from a folder on the server and force download? Without saving the "zip" to the server. $zip = new ZipArchive(); // the string "file1&quot...
Dube asked 30/6, 2009 at 4:22

8

Solved

I'm trying to zip a directory called test_dicoms to a zip file named test_dicoms.zip using the following code: shutil.make_archive('/home/code/test_dicoms', 'zip', '/home/code/test_dicoms') The pr...
Distinguish asked 17/9, 2015 at 21:11

8

Solved

The scenario Imagine I am forced to work with some of my files always stored inside .zip files. Some of the files inside the ZIP file are small text files and change often, while others are larger ...
Indre asked 3/11, 2011 at 20:48

5

Solved

I'm working on a project that I need to create zip with password protected from file content in c#. Before I've use System.IO.Compression.GZipStream for creating gzip content. Does .net have any f...
Inveterate asked 4/5, 2016 at 6:48

6

Solved

Most information found online stated that this could be done with unzip(1), but unfortunately it is not the case anymore, .ipa file format has changed, with unzip -v xyz.ipa: Length Method Size C...
Debroahdebs asked 20/9, 2018 at 10:12

5

I want to create a ZIP file that contains my archived files that I received from the backend, and then send this file to a user. For 2 days I have been looking for the answer and can't find proper ...
Backbite asked 14/1, 2015 at 21:40

4

Solved

Is it possible to store about 20 000 characters in QR code? (Or even more? http://blog.qr4.nl/page/QR-Code-Data-Capacity.aspx) I would like to store only ascii simbols (chars and numbers wit...
Rodneyrodolfo asked 14/6, 2012 at 11:19

4

I know it will have to do with the zip package I just have no idea how I would implement such a thing.
Kriskrischer asked 16/6, 2016 at 21:40

3

Solved

I want to read text files that are stored inside a ZIP-File. Currently I extract the desired files using 7Zip, read them and delete them again. Is there a way to read them without extracting them o...
Blanche asked 31/8, 2017 at 12:50

3

I am having trouble converting a df column into a tuple that I can iterate through. I started with a simple code that works like this: set= 'pare-10040137', 'pare-10034330', 'pare-00022936', 'par...
Circuitry asked 16/5, 2016 at 18:45

5

I know there are already a few questions like this on SO, but they relate to extracting the file before playing it. In the Android docs here it explains that you can play files directly from a .zi...
Lundy asked 24/2, 2013 at 19:36

4

I am using the Zip utility package of Java and wanted to know how to create a zip file with no compression at all. Setting the level to 0 doesn't help. Is this right? Also, when I used the STORED ...
Borgeson asked 30/7, 2009 at 14:29

5

Solved

I know how to extract a zip archive using Python, but how exactly do I display the progress of that extraction in a percentage?
Camorra asked 3/12, 2010 at 1:4

9

Solved

I have a web program where I want the user to be able to import a .war file and I can extract certain files out of the .war file. I have found two class libraries: java.util.zip.* and java.util.jar...
Siege asked 24/10, 2011 at 22:33

13

Solved

I'm attempting to install the PHP Zip extension in CentOS. My server does not have external internet access, so I downloaded it myself from PECL: http://pecl.php.net/package/zip. I chose 1.10.2, th...
Voiture asked 12/9, 2013 at 21:24

3

Solved

I am fairly new to C# and coding in general so some of this might be going about things the wrong way. The program I wrote works and compresses the file as expected, but if the source is rather lar...
Unwise asked 24/2, 2017 at 4:3

3

Solved

I just tried to zip folder and it's content by this command: zip -r ./mytarget.zip ./mysource At the end I got the warning: zip warning: Not all files were readable files/entries read: 141595 (...
Cork asked 13/9, 2017 at 4:46

20

Solved

I have found here at stackoveflow some code on how to ZIP a specific file, but how about a specific folder? Folder/ index.html picture.jpg important.txt inside in My Folder, there are files. af...
Stillas asked 6/2, 2011 at 16:59

© 2022 - 2024 — McMap. All rights reserved.