Questions tagged [unzip]

Unzipping is uncompressing ZIP archives, the opposite of zipping.

2029 questions
0
votes
1 answer

How to rename a file inside a zip file without extracting it using Matlab commands

I have a bunch of zip folders that I have to extract and read the data (stored in a unique file). The problem is some of these folders have two files by any kind of error (instead of 1) with the same name. When I use the Matlab command "unzip", one…
0
votes
0 answers

Groovy throws file not found when tried to unzip a previously downloaded file

I'm trying to unzip a previously downloaded zip file to the branch and it's throwing the following error when unzipping it with antbuilder, and any other method suggested for unzipping in groovy: [ERROR] Pipeline failed: src…
0
votes
0 answers

How to modify a file content in browser using javascript

I have a fileList having files of different types. looking for a way by which i can modify a specific file content and save the modified files in some variable by JavaScript. I want to do everything by JavaScript.
ravi yadav
  • 1
  • 1
  • 2
0
votes
1 answer

read a xml file inside a zip file

This request return a Ziped File, with a XML file inside of it. myXMLText = '' request({ url: "http://webservice.newrastreamentoonline.com.br/", method: "POST", headers: { "content-type": "application/xml", // <--Very…
0
votes
0 answers

Unzip BZ2 format using core c# libraries

I am trying to unzip a .bz2 file. I don't want to use external unzipping libraries or third party nuget packages. Is there as way to unzip using only c# core libraries ?
0
votes
3 answers

Can't unzip file with php

I have a folder in my web server were I put zip files that I need to then unzip. I want to do that with php and this is what I have tried but it does not work:
Ciro García
  • 601
  • 5
  • 22
0
votes
0 answers

how to unzip large file behind a rest controller

I currently have a big issue that I'm not able to solve. I have a REST controller which allows to upload and unzip a large file (700 MB compressed, 11 GB uncompressed), but it takes so much time that it systematically loses the connection with the…
M.ferlay
  • 47
  • 1
  • 5
0
votes
1 answer

Unzipper stream "Bad password" issue in node js

I am extracting password protected zip in node js for this i am using unzipper node module. below is the code which i am using. const unzipper = require('unzipper'); const fs = require('fs'); const path = require('path'); async function…
Dexter
  • 1,804
  • 4
  • 24
  • 53
0
votes
2 answers

how to unzip a file using unzip command?

I have an script which creates a folder named "data". Then it downloads a file using wget and these files (.zip format) are moved from the current directory to the folder "data". After that what I want is to unzip these files. I'm using unzip…
brenda
  • 656
  • 8
  • 24
0
votes
0 answers

Use Excel VBA to unzip files

I found this code on another stack overflow post and it works well but the code prompts the user to select the file, can it be changed so that it automatically unzips all the files in the chosen directory? Unzip folder with files to the chosen…
Timmay
  • 37
  • 6
0
votes
1 answer

How do I write an if statement to check a zip file for a subdirectory and if that doesn't exist, creates a new directory?

So as it says in the title I am attempting to write a branching if/elif to check a zip file for a subdirectory to determine if I can just extract the subdirectory and files or if I need to create a new directory for it. The purpose of this is that I…
ErebusC
  • 1
  • 4
0
votes
1 answer

Unzip the file using JSzip and convert file to ArrayBuffer

In the website, the user can upload a zip that contains one image and xml file. After upload the zip, the website will unzip the file and convert these file into ArrayBuffer. However, after the unzip, it gives me the object instead of file, and the…
0
votes
1 answer

Recursive zip file decompression in python

I am sorry about my English it means the a.txt file is compressed into a3000.zip file, and then the a3000.zip file is compressed into a2999.zip file, and so on until the a0.zip file. I only have a0.zip file, how can I view a.txt file.
0
votes
1 answer

How to categorize files within a zip archive into a list in Python?

I am trying to work with a zip archive in Kaggle, and access the files inside a train.zip file to then train my model. This file includes images of Cats and Dogs and the filenames reveal if the image is an image of a cat or a dog. I think can do…
RFAI
  • 459
  • 4
  • 17
0
votes
0 answers

Folder hierarchy gets lost after extracting

I have zipped file that contains multiple files and folders: -$PlcLogic$/Application/Application.app -$PlcLogic$/Application/Application.crc -$PlcLogic$/meta.info After extracting with unzip on bash, Linux throws away the folder hierarchy…
jonko
  • 11