Questions tagged [unzip]

Unzipping is uncompressing ZIP archives, the opposite of zipping.

2029 questions
0
votes
0 answers

iOS/Swift: How to unzip files by importing Github (or else) files manually? Error Domain=SSZipArchiveErrorDomainUserInfo failed to open zip file

I tried to use the ZipArchive framework for unzipping a zip file, but I don't understand the problem. It doesn't tell me some error, but I could not find my unzipped files/folders. // Unzip let sourceURL =…
ΩlostA
  • 2,501
  • 5
  • 27
  • 63
0
votes
0 answers

How to download zip(folder zip) from S3 bucket store the files in it to different S3 bucket, using spring boot?

I have a requirement where the input to my module is a zip file(i.e., a folder of files zipped) and placed to S3 bucket. I have to unzip from S3 and store the files in it to a different S3 bucket. Can any one help me how to achieve this using spring…
Muruga Balu
  • 115
  • 10
0
votes
1 answer

How can I extract a zip file with DotNetZip in .NET 3.5?

I have a C# project in visual studio and I want to change target framework from .NET Framework 4.6 to .NET Framework 3.5. In the past I used this code to exctract zip file: ZipFile.ExtractToDirectory(zipPath, extractPath); But now I can not use…
Behrooz Fard
  • 536
  • 4
  • 26
0
votes
1 answer

How to extract a .jar file

I like to extract a .jar file in Go. I tried different approaches with the build in libraries but with no success. In buff is a little part of the JAR I try to analyze. The errors also occur on the full byte array. flate: buff := []byte{80, 75, 3,…
Alexander Pilz
  • 180
  • 1
  • 6
  • 16
0
votes
1 answer

Zip archive contain files without names, how to unzip it?

I have a ZIP archive with some photos in it. Problem is, I am not able to unzip all files from this archive. Unzip command: unzip archive.zip Archive: archive.zip mapname: conversion of failed mapname: conversion of failed mapname: conversion…
elceka
  • 66
  • 5
0
votes
1 answer

how do I unzip one large zip file(100gb+) present in a blob container to another blob container ,I get System.OutOfMemoryException

StorageCredentials creden = new StorageCredentials(AccountNameAzure, AccessKeyAzure); CloudStorageAccount storageAccount = new CloudStorageAccount(creden, useHttps: true); CloudBlobClient blobClient =…
0
votes
1 answer

nodejs unzip with encoding option

I'm trying to make some code which makes server unzip requested file by using nodejs(express)... app.post('/unzip', function(req, res) { //Get User Information var id = req.body.id; //Get ZIP Information var…
nate
  • 13
  • 1
  • 5
0
votes
0 answers

Unzip keep both duplicate files in PowerShell

I'm a newbie with some basic skills. I get a .zip file which contains multiple directories with .csv files within. The program compiling those files does not distinguish between upper and lower case, so you can get files FILE.csv and file.csv in the…
byuli
  • 55
  • 2
  • 12
0
votes
1 answer

PHP Rename file which have unrecognized charactor

I'm trying to rename a file, That file generated by unizp a zip file, but the file have a strange character Lieferungen und R�cklieferungen_RvP_2019_02_04.csv we can't have control over that character becoz we getting zip file from 3rd party.…
Suneth Kalhara
  • 1,116
  • 4
  • 16
  • 40
0
votes
1 answer

Reading assets with NDK and Android 2.1

Since my Android application aims 2.1 versions of the system, I cannot read my assets through the native asset manager provided in the lastest NDK. What I am doing to read these assets is to retrieve the application path with Java, send the path…
user642252
  • 513
  • 5
  • 22
0
votes
1 answer

I want to unzip the url for scraping

"https://www.tokopedia.com/sitemap/product/1.xml.gz" this is my url this url contains the number of product urls but it's zipped i don't know how to unzip the url and how to get the data from that, how to unzip it using scrapy or Beautiful soup some…
selva kumar
  • 73
  • 1
  • 7
0
votes
0 answers

How to unzip a file after uploading? (Ruby on Rails)

I need to unzip a zipped file containing log files and save them individually as different entries. I used "carrierwave" for uploading my files. I found a method on the web for unzipping zipped files and I placed it in my ApplicationsController as a…
C.N.N.
  • 91
  • 8
0
votes
1 answer

How to unzip a zip file and show it as list in python-Django

I'am learning python and django, I want to make an endpoint that takes zip file and iterate through it and shows me the item list inside the zip file. What would be the easiest way to implement this? I have tried something, as my knowledge in django…
Zeed Tanue
  • 91
  • 5
  • 24
0
votes
3 answers

Zip files in javascript

I have a file in the directory "./Data/Engine/modules/xnc.zip" that I want to unzip to "./Data/Engine/modules/xnc". After that, I will write to the files and I need to rezip it easily! I would create my own method but I am not capable of creating a…
Jacob Morris
  • 544
  • 4
  • 18
0
votes
1 answer

Upload a zipped file and unzip it while maintaining the original directory

I'm building a log parser app. I followed a tutorial on how to make an upload function, which worked. My new.html.erb for my upload function looks like this (the tutorial was tailored to accept resumes, so some of the methods from my code read…
C.N.N.
  • 91
  • 8