Tagged Questions
0
votes
2answers
44 views
Unzip a file in c# using 7z.exe
I'm trying to unzip a file from a winform application.
I'm using this code :
string dezarhiverPath = @AppDomain.CurrentDomain.BaseDirectory + "\\7z.exe";
ProcessStartInfo pro = new ...
4
votes
1answer
198 views
how to programmatically extract or unzip a .7z (7-zip) file with R
I'm trying to automate the extraction of a number of files compressed with 7-zip. I need to automate this process, because a) there are many years of data I'd like to unlock and b) I'd like to share ...
0
votes
1answer
49 views
Simple solution to extract PDF.zip using PHP
I have a rather large zip file (I used 7zip to compress the files) and I must now extract the files that are on the server. I tried using CPANEL File Manager but the zip file is too big.
Any ideas on ...
3
votes
2answers
267 views
Unzip error in Java
Hi I am quite new to zip format, and I used the Java's util implementation to unzip a file, However it throws a ZipException everytime I try to open the file. I checked to see if the file was ...
1
vote
0answers
33 views
unzipping self-extracting 7-zip exe files in java [duplicate]
Possible Duplicate:
How can I read from a Winzip self-extracting (exe) zip file in Java?
I need to unzip self-extracting 7-zip exe files in java.
I tried looking through many posts which ...
1
vote
1answer
431 views
Issue with Uncompressing the .7z file in the Android evn
Getting "system.entrypointnotfoundexception: loadlibrary" While trying to use SevenZipLib.dll to uncompress the .7z file containing media contents/file in the Android evn.
Context:
-The whole program ...
0
votes
2answers
2k views
Recursive Unzipping with 7z.exe
I stumbled across the below line as a means of extracting every .zip file in every subfolder.
FOR /F "usebackq" %a in (`DIR /s /b *.zip`) do 7z.exe e %a
I've tried this on a WinXP cmd.exe prompt ...
0
votes
1answer
257 views
Finding long file names? [closed]
I have some zipped plug-ins, when I try to unpack that the unpacking fails. When I looked deep into it I found that the some of the files are exceeding 256 characters, which I guess is not allowed in ...
4
votes
2answers
4k views
how to open java program generated zip file using UTF-8 encoding
Our product has an export function, which uses ZipOutputStream to zip a directory; however, when you try to zip a directory that contains file names with Chinese or Japanese character the export ...
6
votes
1answer
2k views
Unzipping files in a faster way than using the java.util.zip in Android
I need unzip a .zip file of 2.5mb(1087 files - *.html, *.css and *.db) in android, i have used java.util.zip, it works fine, but i need improve the performance, the unzip process last 1.10 minutes, i ...