1
vote
0answers
24 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?
0
votes
0answers
225 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){ ...
1
vote
0answers
60 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 ...
0
votes
1answer
346 views

Compress a folder recursively as 7z with PyLZMA and py7zlib

Through much trial and error, I've figured out how to make lzma compressed files through PyLZMA, but I'd like to replicate the seemingly simple task of compressing a folder and all of its ...
0
votes
1answer
274 views

What's the difference between 7z and lzma compressors?

7-Zip claims using LZMA as the compression algorithm. However, the LZMA SDK comes with two executables, 7zr.exe and lzma.exe, which have different options/switches and which produce different results ...
10
votes
5answers
2k views

why is LZMA SDK (7-zip) so slow

I found 7-zip great and I will like to use it on .net applications. I have a 10MB file (a.001) and it takes: 2 seconds to encode. Now it will be nice if I could do the same thing on c#. I have ...
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 ...
1
vote
1answer
610 views

how to compres a Folder uses lzma sdk?

http://www.7-zip.org/sdk.html i can uses it compress a file ,but can not find function of compress a Folder
0
votes
1answer
927 views

How do I create 7-Zip archives containing multiple files with .NET?

Here in this post it is mentioned how to Compress and Decompress files using LZMA SDK. Here is the Code : public static void CompressFileLZMA(string inFile, string outFile) { Int32 dictionary = ...
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
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 ...
3
votes
2answers
8k views

How to use LZMA SDK to compress/decompress in Java

http://www.7-zip.org/sdk.html This site provide a LZMA SDK for compress/decompress files, I would like to give it a shot but I am lost. Anyone got experience on this? Or a tutorial? Thanks.
1
vote
3answers
689 views

Make Custom Self-Extractor

I'll explain what I want, and then I'll explain how I'm trying to achieve it. I want to know if I'm gonig about this the right way, or if there is something much easier. What I want: a ...
2
votes
4answers
2k views

LZMA Or 7zip in Delphi

Is there any Library in Delphi to handle LZMA (or 7zip)files including creating self extracting EXEs There are some sources code at 7zip.orgin (c++ java c#) but i want them in delphi BUT i want ...
3
votes
1answer
3k views

Decompress a 7zip archive with multiple files & directories in Java

I want to decompress a 7zip/lzma archive with multiple files & directories in Java. I tried to use the official 7zip SDK, but I failed, as my programming skills are not that advanced for this ...
1
vote
1answer
854 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
2answers
759 views

Listing the contents of a LZMA compressed file?

Is it possible to list the contents of a LZMA file (.7zip) without uncompressing the whole file? Also, can I extract a single file from the LZMA file? My problem: I have a 30GB .7z file that ...
2
votes
2answers
3k views

Using LZMA SDK in C++

I am trying to use LZMA SDK to compress a file in my program. I have download the SDK but I don't know how to use it. Can anyone tell me what steps I need to take to make this work? Any help would be ...
11
votes
6answers
18k views

Free compression library for C# which supports 7zip (LZMA) [closed]

I have a program (written in C#) that reads/writes its data directly (direct file access without server) to firebird database files. For a better exchange I want to (un)compress them on import/export ...