Questions tagged [unzip]

Unzipping is uncompressing ZIP archives, the opposite of zipping.

2029 questions
0
votes
0 answers

lose of ZLIB inputstream fails when using try with resources

i have function for decompressing zips with multiple entries. Sometimes an exception is catched that states "Unexpected end of ZLIB Input stream". In my opinion it is not possible because i am using try with resrsources. private boolean…
Sal.te
  • 115
  • 7
0
votes
1 answer

Unzip password zip using golang

I'm trying to decompress a zip file in golang (with password). r, err := zip.OpenReader("./path/to/the.zip") if err != nil { log.Fatal(err) } defer r.Close() for _, f := range r.File { if f.IsEncrypted() { …
Hugo L.M
  • 1,053
  • 17
  • 31
0
votes
1 answer

Python Subprocess Opening My Pycharm Folder and Jupyter Folder Instead of Target

Hello I am attempting to unzip a folder using a python sub-process similar to the instructions detailed here: 4th Solution Down in this thread I have the following code: Z_Location = 'C:\\Program Files (x86)\\7-Zip\\7zFM.exe' Extract_File…
Joseph P Nardone
  • 150
  • 2
  • 12
0
votes
1 answer

Java ZipFileSystem does not retain physical order while traversing

Let's consider a very simple Java snippet: String pathUriStr = Paths.get(args[0]).toUri().toASCIIString(); URI zipUri = URI.create("jar:" + pathUriStr); FileSystem zip = null; try { zip = FileSystems.newFileSystem(zipUri,…
Michael-O
  • 18,123
  • 6
  • 55
  • 121
0
votes
1 answer

How to unzip encrypted zipfile with Camel

I would like to unzip and decrypt a zip-encrypted file "Encrypted.zip" using Apache Camel. The encryption has been done as part of the zipping process, with a simple password, so this is a one-step process, not x.zip.pgp or x.pgp.zip. Zip…
Jan Larsen
  • 831
  • 6
  • 13
0
votes
1 answer

Get Unzipped Folder Path - PHP

How can i get the zipped file folder name after unzipping in php. $zip = new…
Marvin Collins
  • 379
  • 6
  • 14
0
votes
1 answer

Unzipping Multipart file with and without subdirectories

Unzipping multipart file with and without subdirectories since I am not giving any instruction to user to how to zip the file therefore I need to find/search all files from Zip file which might have directories and subdirectories and keeping all…
Kramer
  • 389
  • 8
  • 34
0
votes
2 answers

How to unzip a file in Microsoft Azure which is of size 900mb?

I have a zip file in my blob of size 900mb, so how can I unzip the same in the Azure platform itself? Have tried using blob to blob unzipping using logical app. But there the maximum file size is 50mb only. Any inputs is appreciated.
0
votes
2 answers

Extract a particular file doesn't works in python

I need to 1) Find a zipfile at a particular directory location 2) If it exists then unzip it 3) Out of its contents find a specific file and move it to other directory. def searchfile(): for file in os.listdir('/user/adam/datafiles'): if…
Aakib
  • 79
  • 1
  • 14
0
votes
2 answers

Unzip multiple folders to multiple folders

My project involves downloading huge numbers of folders from a website, all of which are zipped, and then processing the data. The macros I found for unzipping folders require specific paths to and from, while I need something that will unzip all of…
JMP883
  • 1
  • 3
0
votes
0 answers

Managing .zip and file in python

So I'm Downloading the PyOpenGL module. But on the page, it says that it needs Togl widget for OpenGL to be used with Tkinter. So I came on this site :https://sourceforge.net/projects/togl/ and download the file. But it gave me a .zip file and when…
hungnguyen
  • 64
  • 1
  • 10
0
votes
2 answers

Java:Unzipping a file, without creating target folder

I have a nice java code that unzips a .zip file. But problem with this code is i need to create target folders(Note:Only folders not file) before running this code. Otherwise i will get path not found exception. So This code wont work if zip file…
vnshetty
  • 20,051
  • 23
  • 64
  • 102
0
votes
1 answer

how to set my zip extractor app as default in mac?

I am Developing Zip extractor cocoa app so my question is how do i make it as default app(programatically) for all .zip files. Any suggestion. Thanks in Advance!
premkolindala
  • 161
  • 10
0
votes
0 answers

Unzip terminal mac french accent

How can I unzip a .zip file with french accent (folders and files have accent some time) with the app terminal on macOS 10.13.5? For exemple with this command : unzip file.zip some folder with accent is like this: ba%A6%E9ton_TBF but the real name…
Myriam Lefebvre
  • 113
  • 1
  • 12
0
votes
1 answer

How to zip (and unzip) byte[] in C#?

How can I zip (and unzip) a byte array in C#? Is it efficient to use zip/unzip on byte arrays with less than 100 elements?
jM2.me
  • 3,839
  • 12
  • 44
  • 58