unzip Questions

3

I'm trying to get a zip file from the server. Im using HttpURLConnection to get InputStream and this is what i have: myInputStream.toString().getBytes().toString() is equal to [B@4..... byte[] b...
Stardom asked 19/8, 2015 at 10:22

4

Solved

I am looking for a way to list the directories in a zip file in bash under Linux. I found out there is an application called zipinfo, which can list the paths in the zip (without any extra noise to...
Tova asked 10/9, 2015 at 17:42

3

Solved

I am trying to extract .exe file using powershell without any other tools. I tried to use System.IO.Compression.ZipFile, but that works only for .zip files.. $zip_file = Get-Item ("C:\Users\00W...
Urga asked 23/3, 2016 at 8:49

12

Solved

I want to unzip a file and this works fine system('unzip File.zip'); But I need to pass in the file name through the URL and can not get it to work, this is what I have. $master = $_GET["maste...
Degrading asked 17/1, 2012 at 2:38

4

Solved

I try to unzip a big zip file containing only one item (more than 100MB) and like to show the progress during unzipping. I found solutions where the progress can be determined based on the amount ...
Bona asked 14/5, 2015 at 7:57

4

From Spring Microservices in Action book: I am trying to use the Docker Maven Plugin to build a docker image for deploy a Java microservice as Docker container to the cloud. Dockerfile: FROM open...

1

I am trying to get at some data in an Autodesk Revit file, which is just a ZIP under the skin. I can use 7zip to extract but I am hoping to automate things with all native PS or Windows. I tried Ex...
Pren asked 21/6, 2018 at 22:14

3

Solved

I wrote the following code for extracting the .zip files to temp: function Expand-ZIPFile($file, $destination) { $shell = new-object -com shell.application $zip = $shell.NameSpace($file) foreac...
Brose asked 11/2, 2015 at 6:50

1

I'm trying to unzip folder that contains German characters in it, for example Aufhänge . I know that in Java 7, it is using utf-8 by default, and i think "ä" is one of the utf-8 characters. Here is...
Brewis asked 28/3, 2019 at 9:18

1

Solved

Goal Goal is to make configuration and code readable after it has been exported from an application that stores this data in base64 encoded and gzip-ped format. Test in Linux-shell Example of a ...
Organzine asked 9/4, 2019 at 20:21

15

Solved

I am trying to programatically unzip a zipped file. I have tried using the System.IO.Compression.GZipStream class in .NET, but when my app runs (actually a unit test) I get this exception: Sys...
Sentimentalize asked 7/5, 2009 at 20:3

4

I have zip file which is inside a folder in zip file please suggest me how to read it using zip input stream. E.G.: abc.zip | documents/bcd.zip How to read a zip file inside zip file?
Pronoun asked 2/7, 2012 at 3:29

5

Solved

I try to extract all files from .zip containing subfolders in one folder. I want all the files from subfolders extract in only one folder without keeping the original structure. At the moment, I ex...
Cappadocia asked 7/2, 2011 at 0:42

3

Say foo.zip contains: a b c |- c1.exe |- c2.dll |- c3.dll where a, b, c are folders. If I Expand-Archive .\foo.zip -DestinationPath foo all files/folders in foo.zip are extracted. I woul...
Claraclarabella asked 1/5, 2017 at 7:48

5

Solved

I am using Windows Server 2012 R2 (64 bit). I have powershell version 4 available in it. I am trying to zip and unzip files. When I try Write-Zip command, it throws me following error: Write-Zip :...
Fajardo asked 19/11, 2016 at 10:54

2

I would like to create NSIS installer that during the installation process checks on the www whether there is a newer application version (number). If in the network exists newer version than versi...
Treasonable asked 17/11, 2010 at 17:41

4

I have a zipped password protected a video file saved on sd card on android emulator. Now i want to unzip that video file on sd card through code. How can i achieve that? Any help or code? Thanks i...
Reticulum asked 8/10, 2011 at 14:29

2

Solved

I want to unzip a file which is password protected.. I know how to unzip for normal zip files which are not password protected. There are some apps like Winzip which does the same thing. Can you g...
Kimberleekimberley asked 21/2, 2013 at 8:41

1

Solved

I have tried to open a .gz file, How can i proceed ? Ex: filename=details_IMST_20180626210209.dat.gz Tried to open with notepad, git bash using less command. But couldn't open as it is zipped. s...
Hipparch asked 27/6, 2018 at 10:2

3

Solved

I need to create a bash script that will work on a mac. It needs to download a ZIP file of a site and unzip it to a specific location. Download the ZIP file (curl -O) Unzip the files to a specifi...
Modal asked 19/12, 2011 at 4:47

1

I am currently using execute_command to unzip some files before building. I would like to unzip the folder that is in effect replace the old files with new file in the destination folder when the ...
Overstuff asked 20/2, 2018 at 18:26

2

Solved

I unzip using this : unzip -q "file.zip" -d path How can I unzip faster with utilizing multiple cores and threads? Thanks
Phantom asked 16/2, 2018 at 8:57

1

Solved

I receive daily emails where there is an attachment containing 1 zip file containing 1 csv file. In the body of my email, there is an image that is being recognized as another attachment I am pre...
Trews asked 8/2, 2018 at 21:55

3

I am a newbie in Linux. Whats is the complete process to zip and unzip a directory and its files? Please mention if any installation has to be done.
Courtneycourtrai asked 13/8, 2015 at 7:29

4

I have a zipped file containing 10,000 compressed files. Is there a Linux command/bash script to unzip only 1,000 files ? Note that all compressed files have same extension.
Yokoyama asked 7/3, 2014 at 6:22

© 2022 - 2024 — McMap. All rights reserved.