Unzipping is uncompressing ZIP archives, the opposite of zipping.
Questions tagged [unzip]
2029 questions
0
votes
0 answers
Node Unzipper Finish called before stream completed
I have the following functions which takes in a zip stream, unzips and uploads it to S3:
export const unzipAndUpload = async (stream) =>
stream
.pipe(unzipper.Parse())
.on("entry", async entry => {
await uploadToS3(
await…

User24231
- 506
- 1
- 7
- 20
0
votes
1 answer
What is the best way to extract .zip file/folder structure then commit to Github using Github API?
I'm trying to place some config files under version control using Github. The ONLY way to get these particular config files is via a GET request to the hosting server. Server responds with a .zip file.
.zip file structure looks similar…

SeaDude
- 3,725
- 6
- 31
- 68
0
votes
1 answer
How to read a zip file written with pkzip in python?
I am trying to read a zip file in python that was written with pkzip:
import zipfile
fname = "myfile.zip"
unzipped = zipfile.ZipFile(fname, "r")
But get this error:
unzipped = zipfile.ZipFile(fname, "r")
File…

Mittenchops
- 18,633
- 33
- 128
- 246
0
votes
1 answer
while unzipping this file it give me this error : bad zip-file file is not a zip file
I want to extract zip-file. file name is test.zip.001.
I am trying to unzip this file but it gives me this error:
bad ZipFile: File is not a zip file
This is my code:
from zipfile import ZipFile
file_name="test.zip.004"
with ZipFile(file_name,'r')…

dildar ali
- 1
- 1
0
votes
1 answer
Unzipping tar file using vba
I am trying to unzip a .tar file using VBA. I have googled it to find the answer,
but not many article talk about the unzipped . tar file.
The code I refer is below : from here: https://www.rondebruin.nl/win/s7/win002.htm because I want to unzipped…

mei
- 21
- 5
0
votes
0 answers
How to unzip ServletInputStream using zip4j library
I am uploading a zip file (heap dump) in a request through postman tool and retrieving file content in servlet using request.getInputStream() method.
Postman Image
I have an InputStream that contains zipped bits and would like to decompress that…

Mahesh
- 103
- 1
- 10
0
votes
2 answers
how to decode tickstory bi5 file in c#
I tried to export tickstory data to a file in CSV, but it came out as bi5 files.
anyways, I am trying to decode bi5 files.
I used 7zip decoding which turned out a bigger garbage.
what should I use in order to decode bi5 file? Moreover how to do it…

Hoy Cheung
- 1,552
- 3
- 19
- 36
0
votes
0 answers
How to unzip file to a directory and read extracted content file names synchronously in NodeJs?
I have a working NodeJs code to extract a .zip file and extract it to a particular directory location,
And read the contents of the extraction directory location.
I am using the async await syntax, as I need both the extraction and read operations…

Dev1ce
- 5,390
- 17
- 90
- 150
0
votes
1 answer
R zip package isn't extracting files because of encoding error
I've made a loop to extract some zip file inside same name diretory, using unzip package.
But unzip isn't recognizing UTF-8 encoding.
See below:
arquivos.1[i]
[1] "CONCEIÇÃO DO MATO DENTRO - CONVITE 530-S07255.zip"
unzip(arquivos.1[i])
Error in…

Bruno Gomes
- 91
- 8
0
votes
0 answers
When unzipping a single .dta file from zip archive, why does unz() fail while unzip() does not?
Reading .txt data from a single file of a .zip archive works tremendously well.
testDir <- paste0(getwd(), "/xllnzoiu")
dir.create(testDir)
write.table(mtcars, file=paste0(testDir, "/test.txt"))
zip(paste0(testDir, "/testZip"), paste0(testDir, "/",…

jay.sf
- 60,139
- 8
- 53
- 110
0
votes
0 answers
How to extract zip file which is on another server?
I want to extract a zip file which is on another server.
Is it possible using FTP credentials?
$dest = 'abc.zip';
$source = 'abc.zip';
$ftp = ftp_connect("ftp.example.com");
ftp_login($ftp, "username", "password");
ftp_put($ftp, $dest, $source,…

Dattaraj Mahajan
- 51
- 8
0
votes
2 answers
Find files with a string in filename and unzip
I have a folder full to zip files. Using linux terminal, I need to find files with a certain string in the zip file name and unzip only them to another folder. I tried the following but no luck.
find /some_folder/ -name "*[temperature]*.zip" |…

user8414391
- 152
- 1
- 8
0
votes
1 answer
Python code breaks when attemting to download larger zipped csv file, works fine on smaller file
while working with small zipfiles(about 8MB) containg 25MB of CSV files the below code works exactly as it should. As soon as I attempt to download larger files (45MB zip file containing a 180MB csv) the code breaks and I get the following error…

ufulu
- 83
- 4
0
votes
1 answer
React native : can't unzip the file I get with rn-fetch-blob
I'm trying to download a zip file with rn-fetch-blob, then when I got this file I unzip it with React-native-zip-archive.
It often works well, but sometimes, the "unzipFile()" function I've created can't unzip the file, like if it is…

Annabelle Braye
- 9
- 3
0
votes
2 answers
Can't unzip downloaded file with Python - Sentinel satellite data
I can't unzip a .zip file downloaded from Copernicus Open Access Hub. I retrieve the file and i try to unzip it using the following Python script:
from sentinelsat.sentinel import SentinelAPI
import zipfile
user = 's5pguest'
password = 's5pguest'…

alcor
- 515
- 1
- 8
- 21