"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.
0
votes
1answer
946 views
using python to unpack selected files from 7zip archives using subprocess
I am currently using subprocess to unpack a selection or zip files using 7zip. I have to use this unpacking method instead of the zipfile module because on occasion the zipfile corrupts shapefiles. My ...
2
votes
1answer
3k views
how to execute 7zip commands from python script
I am trying to get a basic idea of how the os.system module can be used to execute 7zip commands. For now I don't want to complicate things with Popen or subprocess. I have installed 7zip and copied ...
6
votes
1answer
7k views
any good 7z utilities for the mac? [closed]
I'm looking for a good 7zip utility I can run on the MAC (osx 10.7 lion). I'm used to running the windows 7 version which has a nice gui, nice integration with the windows filemanager. Is there ...
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
3answers
248 views
Error loading library jar
I compressed my library jar files using 7-zip with ultra compression for smaller size. But after that when i use it in Netbeans my Swing app doesn't show my library jar loaded. Java cannot access the ...
1
vote
1answer
881 views
Decrypting encrypted 7zip archieve file using 7zip command-line utility
i have a text file myfile.txt which i ecrypt using [7zip][1] GUI Tool. So that it generates an ecrypted archieve myfile.7z
![enter image description here][2]
Now, my question is, how can i ...
-1
votes
3answers
956 views
How to test an 7zip arhive?
I'm trying to test if an 7zip arhive is corrupted or not, I found a good reference to add to my project, it's called SevenZipSharp.dll, but I can't find a help file to show me how, does anyone know ...
1
vote
2answers
634 views
Extracting only a specific subfolder 7zip
I'm working on a python script that will automatically update Calibre since it does not contain an autoupdater and updates weekly. My script downloads the portable zip file, and then should extract a ...
3
votes
3answers
623 views
Creating files in memory then pushing them into a zip archive using 7-zip commandline?
I'm trying to create zip files on the fly in C++, I'm using 7-zip to try and accomplish this, specifically I want to use the 7-zip commandline (I'm willing to try and modify its source to accomplish ...
0
votes
1answer
349 views
How do i check if a file is password protected via 7zip?
I am using 7zip (command line) to look at zip/rar/7z files. I essentially check how many files and what extension it has. Than... i got to password protected files. When the entire file is password ...
3
votes
0answers
403 views
How does 7-zip use threading? [closed]
Is there anywhere an explanation on how 7-zip uses threading to optimize its execution time?
What i would like to understand is:
Is parallelism achieved by compressing several files in parallel? ...
1
vote
1answer
492 views
TJclCompressArchive (project Jedi). How to select a compression format?
Using Delphi XE on Win7 x64, have Jedi Class Library ver. 3.45, and 7z.dll ver. 9.20,
Uses .., jclcompression;
procedure TForm1.Button1Click(Sender: TObject);
const
an = 'C:\1.7z';
fn = ...
3
votes
1answer
360 views
7zip execution permissions in Windows2k8 64
I've created a self-extracting 7zip file. There is one CMD file contained in it which 7zip runs on extract. This cmd reads the registry and performs some further activities (unimportant to this ...
1
vote
2answers
659 views
using 7zip sdk to compress a file, but the archive file is not as original and can not decompress using unrar
I am using 7zip sdk (http://www.7-zip.org/sdk.html) to compress a file.
it works fine using this wrapper:
public void EncodeSingleFile(FileStream inStream, FileStream outStream) {
bool eos = ...
3
votes
3answers
689 views
using 7zip sdk to compress a file, but can not decompress using winrar or 7zip
I downloaded the SDK 7zip from here.
Then I used this code to compress a file to 7zip:
private static void CompressFileLZMA(string inFile, string outFile)
{
Encoder coder = new ...
0
votes
2answers
872 views
create an 7zip archive with sharpcompress
I need to compress a file as 7zip using SharpCompress: http://sharpcompress.codeplex.com
what I have done as follows:
using (var archive = ZipArchive.Create())
{
...
2
votes
1answer
1k views
7zip self extracting installer erases files before installation completes
We made a new installer that works pretty well using Visual Studio and WIX. Now I'm trying to zip it up and make a self extracting installer for distribution.
I can create the installer.exe just ...
0
votes
0answers
229 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
1answer
185 views
decompress string using 7-zip
Is there a 7z command that decompress a string instead of a file?
I want to implement it in a c++ program so that it reads a file, edits it and try to decompress it
Thank you
1
vote
2answers
359 views
C#.NET - Compress Encrypted Files to 7z Format
I need to compress folder with files in .7z format.
I use SevenZip for it with class SevenZipCompressor.cs.
There are a method CompressFilesEncrypted(). How to compress folder with files?
Any help ...
0
votes
2answers
471 views
SevenZSharp Decode with password
I work with SevenZSharp from here
for Decode file I use:
CompressionEngine.Current.Decoder.DecodeIntoDirectory(@"D:\target\host_update.7z", @"D:\target");
But I don't have information how to ...
0
votes
2answers
672 views
How to add file to existing NSIS installer
I have an NSIS-generated installer and I need to create a new installer that is exactly the same, but has one extra file. What is the most direct way to do it? I would prefer if I didn't have to keep ...
1
vote
3answers
2k views
extract 7zip in C# code
I need use 7zip in C#. Without console, just with 7zSharp.dll ?
+ I find some data here
http://7zsharp.codeplex.com/releases/view/10305 ,
but I don't know how to use it( - I could create .bat(.cmd) ...
2
votes
2answers
639 views
random seek in 7z single file archive
Is it possible to do random access (a lot of seeks) to very huge file, compressed by 7zip?
The original file is very huge (999gb xml) and I can't store it in unpacked format (i have no so much free ...
0
votes
1answer
421 views
7zip file compression mode store using command prompt is not working?
I need to compress my data folder using 7zip (compression mode store) from my nant script. If I compressed from command prompt its not working properly. It taking some other compression mode.
This is ...
1
vote
2answers
3k views
Retrieve an error of 7-zip when running a batch file
I have a batch file in which I execute the following line to list the contents of an archive:
"\Program Files\7-Zip\7z.exe" l "\Backup Google Docs.7z"
The archive is intentionally corrupted.
...
0
votes
2answers
782 views
7zip: In C#, how to add multiple files of the same name in different directories to the same zip file?
I created a C# snippet that calls 7zip (7za) to add a list of files to a zip archive. Problem is multiple files in different directories have the same name, so 7zip either complains about duplicate ...
0
votes
1answer
416 views
Unable to extract VHD image files
I was unable to mount a VHD image in Windows Server 2008, so I extracted it with 7zip and was left with a file called "0.ntfs". I am unable to extract or mount this file either and I'm not sure what ...
0
votes
1answer
4k views
How to use the 7z SDK to compress and decompress a file
According to this link How do I create 7-Zip archives with .NET? , WOPR tell us how to compress a file with LMZA (7z compression algorithm) using 7z SDK ( http://www.7-zip.org/sdk.html )
using ...
1
vote
1answer
523 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
0answers
314 views
shell_exec not execute some programs (e.g 7z) but start another (e.g zip) [closed]
i make
shell_exec("7z a /blablabla/arc /blablabla/file");
i need archive file with 7z, but its not working.
But it works if i use zip instead 7z or start script manually
This not only with 7z, ...
0
votes
1answer
280 views
How to compress multiple files into 3 files per archive with windows batch file?
I have 100 files that look like this:
001.txt
002.txt
003.txt
004.txt
.....
100.txt
I want to compress them like this:
001.txt
002.txt ----> archive01.7z
003.txt
---------
004.txt
005.txt ...
0
votes
1answer
285 views
How to execute 7zip commands from nant script?
I need to execute 7zip commands from nant script. How can I do that?
I have tried it like this, but it is not working
<exec program="7z.exe" basedir="${sevenzipinstalldir}" commandline="7z ...
1
vote
1answer
1k views
7-Zip 7za Command Line Can't Find the Specified File
I have C# program using 7za.exe to check a zip archive using the "l" command and then extract it using the "e" command. Information about 7-Zip command line can be found at: ...
0
votes
1answer
259 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 ...
0
votes
4answers
2k views
Extract files to same folder as archive using recursive to search all directories
I'm working on an automation task in PowerShell that extracts the contents of several .tar archives to their respective subfolders using recursion and the 7z.exe utility.
Im running into an issue ...
1
vote
2answers
2k views
7zip command line backup script acting weird
I am creating a small backup script for my personal use, and it works at 99% on the latest version of 7zip, Win7x64 :
:: u : Update archive
:: -t7z : Use 7z file type (less compatible and ...
2
votes
2answers
285 views
7-Zip command doesn't succeed when in an asynchronously called batch from php
In my batch file I've got the following code
SETLOCAL enabledelayedexpansion
7Z a -r ..\%ZIPNAME%.zip * >> uniqueid8.log
IF !ERRORLEVEL! GEQ 1 (
CALL :getLineNumber errLine uniqueID8 -2
...
0
votes
2answers
305 views
C# Program Exits After Running Other Process
This problem is bizarre. I have never encountered anything like it before.
I am trying to make my program extract a file using 7zip. I have done this before in other programs and it was never too ...
6
votes
1answer
1k views
Can Delphi JCL 7zCompression used to compress/decompress in-memory stream without file operations?
I had used TJcl7zCompressArchive / TJcl7zDecompressArchive to do Archive operation before.
Now I would like to compress / decompress in-memory streams directly without file operation. However, when ...
3
votes
1answer
885 views
C# Using 7zip to get list of files in an archive?
I am using 7zip http://www.7-zip.org/download.html in a C# program to unzip files using the code below.
Process t = new Process();
t.StartInfo.FileName = "7za.exe";
t.StartInfo.Arguments = "e " + ...
1
vote
1answer
170 views
On-the-fly compression of stdin failing?
From what was suggested here, I am trying to pipe the output from sqlcmd to 7zip so that I can save disk space when dumping a 200GB database. I have tried the following:
> sqlcmd -S <DBNAME> ...
0
votes
1answer
203 views
Zip - Add files and folders that are newer, remove old ones
I want to do the following on a Windows and Linux machine :
Zip several folders in an automated process
Add new files to archive, remove old ones.
I've experimented with .bat and .sh scripts using ...
1
vote
2answers
4k views
7zip command line self extractor not asking for path
I've created my self extracting .exe file from 7zip command line using the
7z a -sfx <name.exe> <filelist...>
commands but when I run this from windows explorer it does not ask me for ...
1
vote
3answers
1k views
Using LZMA SDK in C++
Can i use LZMA SDK in my application without using any dll libraries such as 7z.dll or 7za.dll so that my application's executable file should not have any dependencies?
If it is impossible where can ...
0
votes
1answer
3k views
How to unzip/extract 7z compressed files in ios
I need to unzip/extract 7z compressed files in ios, Can anyone say the libraries used to do this,where are those libraries available to download.I there any sample project to do this ,let me know
2
votes
3answers
668 views
7z format compression [duplicate]
Possible Duplicate:
How do I create 7-Zip archives with .NET?
I'm looking for ways to do compression and decompression in 7z format via code in VB.NET and C#. Is there any library or .Net ...
5
votes
6answers
4k views
Any good tool for browsing archives(Ear,War, Jar) on OSX
On Linux i can use file-roller and open an browse the content of an EAR file without manually open it, can even dig into contained WAR file and within that JAR files quickly.
This is another of those ...
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 ...
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 ...
