Unzipping is uncompressing ZIP archives, the opposite of zipping.
Questions tagged [unzip]
2029 questions
0
votes
0 answers
extract specific files from nested zip files
I would like to extract files having the extension ".wav" from a set of nested .zip files contained in "c:\Myfolder".
This code explains how to extract the .wav files from a .zip. I suppose it's best to first extract all the zip files to a folder…

val
- 1,629
- 1
- 30
- 56
0
votes
0 answers
Read a text in .gz file when the .gz file is located in a .zip file
I have a large .zip file which contains thousands of .gz files. I would like to read the .txt in each .gz file, what should I do in the R environment? Many thanks for your help.
Best regards,
Songchao

Songchao Chen
- 41
- 2
0
votes
0 answers
Why does it throw an error when it tries to unzip the 1.12 version?
I am making an installer for an mc mod it has to donwload the zip file of the mod from a server but when my installer(for the mod) tries to unzip the 1.12 version it throws an but it works with all the other versions.(when I unzip it myself on my pc…
0
votes
0 answers
tar zxvf command takes forever to unzip Python-3.5.5.tgz
I am trying to install Python-3.5.5 for local user without sudo on Linux. I downloaded the Python-3.5.5.tgz with wget https://www.python.org/ftp/python/3.5.5/Python-3.5.5.tgz, then used tar zxvf Python-3.5.5.tgz to unzip the file. But this line…

user10819593
- 47
- 5
0
votes
1 answer
How to call function after unzipping file and uploading contents to Firestore in angular?
I am getting a zipped file of images and csv files from a user. I need to unzip those files and upload them to Firestore. When I upload the images, I also want to save the path to download the image in an image object which I push later. I want to…

rav_dwag
- 23
- 5
0
votes
1 answer
PHP unzip file on the site
When users want to unzip files on my PHP site(hosting uses Ubuntu 16.04), it works for Linux or MAC users, but does not work for Windows users and just upload zip file without unpacking.
I used these solutions:
echo exec("unzip $file_name…

Eugene
- 61
- 1
- 4
0
votes
1 answer
Getting backward slash while unzip folder containing files like: /sdcard/folder/subfolder\file.xml in android
My Zipped folder contains sub-folder with files but while extracting it, I am not able to achieve the same hierarchy. I'm getting the unzipped structure as…

Developer
- 151
- 8
0
votes
0 answers
Unzip File More than 3GB on 32Bit Android
Is it possible to unzip large file (in this case more than 3GB) in android 32Bit Processor? I have try running on 64Bit Processor and I unzip successfully. But when I try run on 32 Bit Processor it always got error. How can I unzip this file on…

mas_bejo
- 597
- 2
- 6
- 22
0
votes
2 answers
using azure data factory to unzip multiple files from http site
I have set up an "http file" data source in my ADF to connect to a specific URL (https://www.sos.wa.gov/_assets/corps/txtCorpsData.zip) which points to a ZIP file that contains 4 separate .txt files.
The service successfully connects and unzips the…

Tim F
- 85
- 1
- 11
0
votes
1 answer
ZipException while decompressing .zip programmatically
I am trying to decompressing .zip, programmatically in my application with the help of this code,
public void unzip(String _zipFile, String _targetLocation) {
dirChecker(_targetLocation);
try {
FileInputStream fin = new…

Aditya
- 3,525
- 1
- 31
- 38
0
votes
1 answer
how to read multiple .gz files in a particular directory in python without unzipping them
I have a folder /var/tmp in my linux directory where i have multiple .gz files in the below mentioned format…

Aakashdeep Garg
- 33
- 1
- 6
0
votes
1 answer
Batch script to unzip files into a certain folder
I have multiple .zip files which I want to unzip by a script. After a short research.
I have this script:
for /R "C:\root\folder" %%I in ("*.zip") do (
"%ProgramFiles(x86)%\7-Zip\7z.exe" x -y -o"%%~dpI" "%%~fI"
)
The problem is, that it only…

Gunter
- 137
- 3
- 12
0
votes
0 answers
How do I unzip a file of size 40 gb in Azure blob store using C#
How do I unzip a file of size 40 GB in Azure blob store using C#? I tried using Sharpziplib and ionic.zip. But I run into errors
Bad state (invalid block type)
. Can anyone please help me out?
Below is my code
var storageAccount1 =…
0
votes
1 answer
C# Extract/Unzip a .EXE file
Using the DOTNETZIP library, I can currently unzip/extract .ZIP files using the following code:
private void Unzip(object sender, EventArgs e)
{
string zipPath = pub.DepoDirDaily + @"\";
string unzipPath = pub.DepoDirDaily + @"\";
…

dhowells217
- 23
- 8
0
votes
1 answer
R Shiny: unzip doesn't output the correct file path in reactive
In a shiny app, if you click on the open file dialog box it runs this reactive funtion:
data <- reactive({
file <- input$file
req(file)
if (is.null(file)) {
return(NULL)
}
fpath <- file$datapath
if (endsWith(".zip",…

Dave Babbitt
- 1,038
- 11
- 20