zip Questions

6

I need to provide a view of zip file to customer in system, and allow customers download choosed files. parse the zip file and show on the web page. and remember every zipentry location(for examp...
Idoux asked 24/8, 2015 at 9:42

4

Solved

i'd like to zip everything except one file 7z a -tzip files.zip * this will zip all the files in my current directory.. is there a way I can tell it to not zip one file or one file type ?
Kamilah asked 18/11, 2012 at 23:17

18

I am downloading a zip file using c# program and I get the error at System.IO.Compression.ZipArchive.ReadEndOfCentralDirectory() at System.IO.Compression.ZipArchive.Init(Stream stream, ZipArchiv...
Bibcock asked 6/1, 2014 at 22:21

3

I'm using the next code to download some zip archive: $client = new-object System.Net.WebClient $client.DownloadFile("https://chromedriver.storage.googleapis.com/$LatestChromeRelease/chromedri...
Malek asked 13/5, 2022 at 11:50

4

In my website i have option to download all images uploaded by users. The problem is in images with hebrew names (i need original name of file). I tried to decode file names but this is not helping...
Terrarium asked 20/12, 2012 at 8:18

4

Solved

I want to export my Unity project as a ZIP folder, but I can't. When I click on Asset > Export Packages, only one scene gets exported. I want to export the project so that I can send it.
Mendie asked 14/12, 2016 at 19:39

6

Solved

I have a script that creates zip files of dirs containing symlinks. I was surprised to find that the zipfiles have zipped the targets of the links as opposed to the links themselves, which is what ...
Byrd asked 3/3, 2016 at 21:0

9

I am creating an ZIP file with ZipFile in Python 2.5, it works OK so far: import zipfile, os locfile = "test.txt" loczip = os.path.splitext (locfile)[0] + ".zip" zip = zipfile....
Coronado asked 20/8, 2008 at 0:16

15

Solved

I need to zip an entire directory using Node.js. I'm currently using node-zip and each time the process runs it generates an invalid ZIP file (as you can see from this Github issue). Is there anot...
Dineen asked 26/3, 2013 at 15:41

16

I have two zip files, both of them open well with Windows Explorer and 7-zip. However when i open them with Python's zipfile module [ zipfile.ZipFile("filex.zip") ], one of them gets opened but t...
Nogas asked 21/6, 2010 at 8:55

8

I am trying to zip a file using shell script command. I am using following command: zip ./test/step1.zip $FILES where $FILES contain all the input files. But I am getting a warning as follows ...
Broadside asked 11/12, 2013 at 21:2

30

Solved

How can I create a zip archive of a directory structure in Python?
Strop asked 6/12, 2009 at 11:12

4

Solved

I have a compressed data file (all in a folder, then zipped). I want to read each file without unzipping. I tried several methods but nothing works for entering the folder in the zip file. How shou...
Phenomenal asked 25/3, 2014 at 21:26

4

Solved

I have been trying for some time and believe I am fairly close to this, but I am fairly new to Unix so have been finding this difficult. I have a folder, containing many folders, some of whic...
Varnado asked 11/2, 2013 at 13:36

2

Solved

I am getting the following error while using zip in my bash script zip warning: name not matched: test.png test2.png #!/bin/bash files_to_zip="test.png test2.png" zipfile_name=result$(date "+%Y.%...
Brittani asked 2/9, 2017 at 15:13

9

Solved

Is there a Python library that allows manipulation of zip archives in memory, without having to use actual disk files? The ZipFile library does not allow you to update the archive. The only way s...
Guildroy asked 17/3, 2010 at 15:57

5

Solved

I am using NodeJs (w/express) and I am trying to stream a zip file back to the client. The files contained in the zip do not live on the file system, rather they are created dynamically. I would li...
Polder asked 20/11, 2013 at 21:22

4

Solved

I was recently asked to export as a .zip file one of my projects on my Git repository. I have actually never had to do this in the 4 years I have been using Git. I would prefer an answer that is ...
Damle asked 4/4, 2019 at 12:8

4

I have a 1.4GB zip file and am trying to yield each member in succession. The zipfile module keeps throwing a BadZipfile exception, stating that "zipfile.BadZipfile: zipfiles that span multiple...
Protero asked 15/7, 2013 at 21:27

3

Solved

I am getting a base64 binary encoded data from an API request response. I need to save it as zip file. I use the code like below. <?php $zipStr = 'UEsDBBQACAAIABprdEEAAAAAAAAAAAAAAAAWAAAAb2JqZW...
Hornstone asked 21/11, 2012 at 9:31

4

Solved

i'm trying to use this ssh command in centos 5 to zip up a directory full up folders and files yet exclude the examples below. it's not working. zip -r file.zip * -x dir1 -x dir2 -x file1 -x file2...
Levine asked 17/1, 2012 at 16:59

5

I have a question that seems easy but I cannot seem to get it to work properly. I have a zip file within my 'assets' folder that I need to unzip and I have a ProgessBar in which I want to display...
Helmick asked 22/7, 2011 at 19:57

5

Solved

I am new to powershell and looking to list all the files, contained in zip files in a directory. I don't want to use any third-party tool. Structure of the directory is mydir > dir a.zip b.zip ...
Tableau asked 7/1, 2013 at 21:21

3

Solved

I'm using zipfile and under some circumstance I need to create an empty zip file for some placeholder purpose. How can I do this? I know this: Changed in version 2.7.1: If the file is created w...
Analeptic asked 8/8, 2014 at 3:6

2

Solved

I want to compress multiples files into a zip files, I'm dealing with big files, and then download them into the client, for the moment I'm using this: @RequestMapping(value = "/download", method ...
Cacilia asked 21/12, 2018 at 13:17

© 2022 - 2024 — McMap. All rights reserved.