"7z" or "7zip" may refer either to the open-source 7zip compression container format or to the program of the same name that is the flagship implementation of the compression format. Both are GPL-licensed and under active development.

learn more… | top users | synonyms (2)

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 ...
4
votes
1answer
268 views

PsExec 1.98 (spawned from C# process) never completes when running 7Zip across domain

I am kicking off PsExec using a C# .NET 4 process with the code var startInfo = new ProcessStartInfo(psExecLocation) { Arguments = string.Format(@"\\{0} -accepteula -u {1} -p {2} {3}", ...
4
votes
1answer
12k views

How to unzip a 7zip archive in Android?

The problem is probably quite simple for some of you: I have a 7zip archive which contains some hundred files separated into different directories. The target is to download it from a FTP server and ...
3
votes
1answer
755 views

C++ using 7zip.dll

I'm developing an app which will need to work with different types of archives. As much of archive types as good. I have choosen a 7zip.dll as an engine of archive-worker. But there is a problem, does ...
2
votes
1answer
59 views

How does 7-zip check if the password you have provided is right?

I'm trying to understand how exactly 7-zip recognizes if the password you have provided is correct. For example I have a file x.7z that I have password protected with "password". Before I attempt ...
1
vote
1answer
262 views

How to partially extract a folder from a 7z file using powershell

I'm trying to automate the install of my platform. I've made a script for compressing the build of the deployables to a 7zip file. Now i need to uncompress partially some folders to a specific ...
1
vote
1answer
251 views

SevenZipSharp append an encrypted archive

I'm using seven zip sharp and am having issues trying to add a file to an encrypted archive. Appending to a non-encrypted archive (with appropriate methods) seems to work, but an encrypted archive ...
1
vote
1answer
699 views

Unable to download files with .7z extension from server

I have uploaded the files with extension .7z and .zip, "test.7z" and "test.zip" to our server. When i tried to download "test.zip" it will download ...
1
vote
1answer
309 views

c# 7za.exe process status

i'm running a 7za.exe process to 7zip a file like this: ProcessStartInfo proc = new ProcessStartInfo(); proc.FileName = zip_Path; proc.Arguments = "a -t7z ziped.7z file.bak"; ...
1
vote
1answer
524 views

PSEXEC not redirecting 7zip output

I'm trying to use PSEXEC to uncompress a self extracting file (a console exe created with 7zip) in a remote machine and view the results on my screen. The remote command executes just fine, but I ...
1
vote
1answer
545 views

How can I extract a multi-volume zip file using SharpZipLib in C#?

I have a single file, Setup1.cab, which is split up into Setup1.zip.001 and Setup1.zip.002 that I used 7zip to archive. Once those volumes reach their destination, I'd like to be able to use C# to ...
1
vote
1answer
599 views

batch using 7-zip: compress smallest file first to largest file

I have a .bat file that runs 7-zip to compress all files in a directory. The files range in size from 1mb to 500mb and there are 10 files. Every 15 mins a scheduled backup program overwrites 5 of ...
1
vote
1answer
855 views

How to pass password to decode LZMA (7zip) encrypted archive in C / Objective-C?

Does anyone know how to pass password to decode function in LZMA SDK?
1
vote
1answer
1k views

Ant automation of InstallAnywhere installers - console mode

My problem is to create an ant target for automating our installer running in console mode. The installer is created using InstallAnywhere 2008, which UniversalExtractor recognizes as a 7-zip ...
0
votes
1answer
93 views

How to extract multiple files from 7zip compressed file using pylzma

i have a 7zip compressed file with .bup extension, after extracting this file using 7zip utility it creates a folder which contains two files....i would like to do the same thing with PyLZMA, can all ...
0
votes
1answer
40 views

update newer files with older using 7zip “update” command

I noticed that -u command in 7zip ignores the files when the file to be updated is older than the one in the archive.. e.g. of my command 7z u -mx=0 -tzip ...
0
votes
1answer
137 views

7zip cmd line version: How to zip each file into a seperate archive from batch file

I have the follwing command: for %f in (*.txt) do "C:\WINDOWS\7za.exe" a -t7z "%f.7z" "%f" which i send to a cmdprompt from a vba script. This works, but now I have to include the path to the ...
0
votes
1answer
64 views

An archiver that supports compression, encryption, retain permissions, and fast at retrieving file

I have a directory with a big amount of data and I want to archive it. I need Supports compression. The compression can saves a lot of disk space; Supports password encryption. The data is ...
0
votes
1answer
323 views

Using 7zip to archive file by year

I have a batch script that runs 7zip and allows me to zip all the files in one folder. I only want to zip files that have a Date Modified of 2010 or another date of my choosing. I want to delete the ...
2
votes
0answers
227 views

How I can get embedded attachments out of an Outlookmailitem? -> Get Attachments out of *.msg files

at the moment I am delveoping an Outlook-addin (Outlook 2007) in C#, and I need to save the embedded attachments (usually images in BMP format). I meen the attachments which are embedded by pasting ...
1
vote
0answers
27 views

How to use lzma2 in python code?

I know there is a module called pylzma. But it only support lzma, not lzma2. My current solution is using subprocess.call() to call 7z program. Is there a better way?
1
vote
0answers
44 views

Using SevenZipSharp to extract bzip2 file add a needless tar extension to file, and can't get right archive informations?

Using following code to extracting a bzip2 file to a specified directory: string[] archive_files = null; using (SevenZip.SevenZipExtractor extrator = new SevenZip.SevenZipExtractor(source_file)); { ...
1
vote
0answers
49 views

Compressing slightly bigger file resulted in smaller zipped file?

I first zipped a Visual Studio project folder which turned out to be 14,100 kb. I then realized that I needed to add something to my program, so I inserted an additional 50 lines and saved the ...
1
vote
0answers
62 views

Is there any way to keep compressed file extension using “SevenZip.LzmaAlone” class compression?

I'm working on big files compression using Java. It's mandatory (for me) to compress my files unto 7z files (LZMA compression). To do that, I'm using the 7z Java SKD. I'm calling the ...
1
vote
0answers
223 views

How to extract multivolume RAR with Sevenzip.pas?

I am using Progdigy's SevenZip unit to extract RAR files. Works great when RARs are single volume. When I have a multivolume archive then it fails. I am guessing I should add some code to support a ...
1
vote
0answers
119 views

How to pass sfx settings to the SevenZipSfx class

Does anyone know how to pass the sfx settings for the SevenZipSfx class located at http://sevenzipsharp.codeplex.com/. I need to specify what file to run, etc. I just took one of the samples e.g ...
1
vote
0answers
183 views

Launch 7zip and fetch the output from the console

In a Lazarus (freepascal) project I added a TAsyncProcess with those options: [poUsePipes,poStderrToOutPut] to catch the output and show the last line. using the ReadData event, I added some code ...
1
vote
0answers
377 views

Google Chrome believes 7-zip sfx archive is a virus

I usually deliver a SDK I'm working on as a 7-zip self extracting archive (.exe). The problem is that when I put this on a HTTP server and try to download it with google chrome, the browser believes ...
0
votes
0answers
37 views

Return exit code from 7z sfx archive

I've created an sfx archive using 7z. The config text file is: ;!@Install@!UTF-8! GUIMode="2" ExecuteFile="test.exe" ;!@InstallEnd@! By default, the sfx archive's exit code is based to whether or ...
0
votes
0answers
57 views

c++ archive program using 7zip dll

I'm trying to make a small archive program using 7zip dll, but I can't figure out how to use it. I don't know where the CLSID and IID are defined, what IID to use in order to be able to compress ...
0
votes
0answers
15 views

Is there a way to add a folder to existing 7za archive?

I have tried adding a new folder to an existing 7za archive using the following command from command prompt: 7za.exe a repo.zip \res\pub\newfolder newfolder The above command added a folder to root ...
0
votes
0answers
230 views

lzma compress/Uncompress from memory c++

I have a code working, but i'm not entirely satisfied of the result, so I figured I could ask some questions here. Here are my two functions : void compress(string nameSrc, string nameDst){ ...
0
votes
0answers
72 views

reading certain entry

How to read certain entry from rar,zip,7zip file? This is my code.The problem here is the while loop...Each execution of reader.MoveToNextEntry(); takes ~50ms so if I have a rar with 1k images,it ...
0
votes
0answers
21 views

Check that archive is up-to-date

I am distributing binary files in a 7z archive. The archive is re-created frequently, but only very rarely its contents changes - with the exception of file times. For that reason, I cannot compress ...
0
votes
0answers
211 views

Editing and compiling 7-zip in Visual Studio 11 (2012)

It seems the source code for many applications is not friendly with Visual Studio 2010 or 2012, or for anything GUI based for that matter, probably my knowledge is at fault there. Programs and ...
0
votes
0answers
300 views

Is there a Android Port for the 7zip library?

I am thinking of porting it, if there isn't one already available. Google search yielded one result, but that port was incomplete and did not compile either... If there is an already existing android ...
0
votes
0answers
68 views

c# Append file to Existing .rar

I'm looking at appending a single file to an existing .rar file. I am currently using sevenzipshap to read the .rar. But i cant find any documentation on their site about adding a file to an existing ...
0
votes
0answers
50 views

How can I create 7z (Should be turning to .exe file) with batch command, when I should zip multiple folders each contains many files?

I want to create a zip from multiple folders It should be an .exe (final step) Does anyone knows how to do it using batch command?
0
votes
0answers
146 views

How to compile 7zr from the LZMA SDK with encryption support?

I want to use the LZMA SDK to create/extract encrypted 7zip file from my app. I'm using the Alone7z bundle from the SDK to figure out how to use the SDK. With the provided makefile 7zr doesn't ...
0
votes
0answers
218 views

7za commandline “The handle is invalid” & VB.net

I'm using .NET 4 Client in MS Visual Studio 2010 on Windows 7 64 bit and 7-Zip command line 9.20. I start command line 7za with the following commands: ExtractProc.StartInfo.Arguments = "x -o""" + ...
0
votes
0answers
125 views

7 Zip Frustations

I have 10 zip files(zipname1.zip,zipname2.zip etc ) that have the same file name( SameFileinAllZips) in them. I want to unzip each file and move it to a different directory giving it a number and the ...
0
votes
0answers
203 views

7zip string/stream compression PHP/C? No file name / date store in .7z archive, every byte count

I want compress 1 small file/data, only file size matter. No need file information store, like filename, size, date, etc... If I use rar/7zip/zip as CLI, file information added to archive. It's not ...
0
votes
0answers
160 views

7-Zip & Java - how do I get the value of percentage completed?

I wrote a Java code that sends files for compression using LzmaAlone.java. Sending one file is not a problem, but for sending numerous files I need some confirmation that the previous file finished ...
0
votes
0answers
361 views

Create split archives (zip, rar, 7z) in Python

In short: I need to split a single (or more) file(s) into multiple max-sized archives using dummy-safe format (e.g. zip or rar anything that work will do!). I would love to know when a certain part ...
0
votes
0answers
185 views

using LzmaCompress to make an archive

I'm a lil bit confused with compression methods. I do know how to use this function, and it does output a tinier buffer, but how do I make an archive using the 7zip sdk, with the compressed data? i'm ...
0
votes
0answers
119 views

Powershell - Navigation thru array within an array

I am building an array as follows $filelist2 = @() $e = $null foreach ($e in $extBkupArr) { $filelist2 += ,(($e[1]),(Get-ChildItem $ToBeZipped"\*" -Recurse -Include $e[2] | Select-Object ...
0
votes
0answers
230 views

Using 7lib C library to compress a file?

I've set up a project using 7libs code and built a lib in C (the C++ project was giving me issues, the C one compiled without issue). but now I'm staring at this massive bit of code with nothing by ...
0
votes
0answers
378 views

7-ZIP command line sometimes block

I have a command line batch to unzip some files and sometimes the 7zip command line block. The solution i found needs to unlock(http://www.filehippo.com/download_unlocker/) de file zip. Because ...
0
votes
0answers
219 views

7zip compressing the same file slightly different results

I am using 7za command line File dfat_clist.xls in directory 2010_05_07 The same dfat_clist.xls in directory 2010_05_08 Zips are created in the same directory where the xls files resides string ...
-1
votes
0answers
22 views

LZMA (1 or 2) stream decode that supports seek?

I think it should be possible to seek to the blocks that make up a LZMA (or LZMA2) stream, however I cant pull it off.. tried 3 7zip .NET libraries (The official 7z one, SevenZipSharp, and others). ...

1 2