Tagged Questions
1
vote
0answers
20 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?
2
votes
1answer
56 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 ...
0
votes
1answer
85 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 ...
-4
votes
1answer
56 views
text oriented file compression software development [closed]
I want to develop a text compression software that achieves higher compression rates than that of the existing ones like 7zip,rar etc. I need the steps to perform this operation and i need to know ...
0
votes
1answer
368 views
Create an archive with current data and time in file name using 7z command line
Today I lost my whole Far Cry 3 save game suddenly. So now I want to backup it's save game folder automatically on a certain period of time using windows task scheduling.
I want to include date and ...
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
59 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
0answers
296 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
1answer
343 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 ...
1
vote
2answers
988 views
Compressing & Decompressing 7z file in java
I want to compress a file into zip, rar and 7z format using java code. Also I want to decompress these files at a specified location.
Can anyone please tell me how to compress and decompress files ...
2
votes
2answers
239 views
zipping files with the same name in different folders using 7z @listfile feature
I want to create a 7zip file containing files with the same names but in different folders using 7zip's @listfile feature. Although I have used 7zip CLI for a long time, I just cannot find the syntax ...
2
votes
0answers
226 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
votes
1answer
586 views
Integrating 7-zip library in to a C#.NET application [duplicate]
Possible Duplicate:
How do I create 7-Zip archives with .NET?
How can we integrate 7-zip archiving library in a C#.NET application. I am working on an application that need to have an ...
2
votes
1answer
608 views
7zip compress network stream
I will like to compress a file before sending it through the network. I think the best approach is 7zip because it is free and open source.
How I use 7zip with .net?
I know that 7zip is free and ...
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 ...
1
vote
2answers
1k views
Windows CMD file/folder Compression using 7z or alternative .tar.gz
I've searched how to compress files/folders using 7z on windows cmd, I've found the way to compress to: zip, tar, 7z, ..etc but not .tar.gz or .tar.bz2
Here it is the documentation I user: ...
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
183 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
1answer
274 views
Stream through files in 7-zip archive
I'd like to write a Python or Java app to iterate over all of the many small files in a 7-zip (.7z) archive. Is there a convenient way to do this in a streaming and efficient fashion, i.e. without ...
7
votes
1answer
294 views
Is it possible to resume 7zip compression?
My application regularly upload large files. Regardless of their size, all files are compressed before uploaded to server.
Part of this project requirements is to resume nicely after crash/power ...
7
votes
1answer
7k views
any good 7z utilities for the mac?
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
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 ...
3
votes
0answers
400 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 = ...
2
votes
2answers
637 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
418 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 ...
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 ...
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> ...
2
votes
3answers
663 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 ...
1
vote
2answers
1k views
How to use the 7z DLL to compress and append many small chunks of data to a file
I would like to use the 7z DLL to append small amounts of data to one compressed file. At the moment my best guess would be uncompress the 7z file, append the data, and recompress it. Obviously, this ...
2
votes
2answers
693 views
Why is compressed then uncompressed stream of different length
I'm using the SevenZipSharp library to compress and then uncompress a MemoryStream which contains a simple serialized object. However, the compressed and decompressed streams are of different length.
...
1
vote
3answers
686 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 ...
0
votes
1answer
253 views
compression method for .dmg
I want to compress a .app folder to a .dmg
I used bzip2 (-format UDBZ) to do that but the filesize is still too large and I know it can be done better. Is there a better compression algorythm ...
2
votes
1answer
470 views
Indexing / random access to 7zip .7z archives
Tools exist to provide random access to gzip and bzip2 archives:
gzip zran.c from the ghostscript source code
bzip2 seek-bzip by James Taylor
I'm looking for any similar solution for 7zip
(The ...
1
vote
1answer
196 views
7zip container format
I know how to compress an individual file using LZMA but it's not clear how to generate a valid 7-zip container for a collection of files. How do I write binary data for 7z archive format? explains ...
7
votes
1answer
4k views
7z extension for php?
I can't find one and I don't know if any of PHP Compression and Archive Extensions will work.
Do you think I could use a compression stream to read data from a 7z file?
UPDATE
7z forums have a ...
4
votes
1answer
859 views
What compression format should we use; should we lay DEFLATE (.zip) to rest? [closed]
With most Linux distributions dropping gzip and bzip2 in favor of LZMA2 for compressing their packages, and many open source implementations for many platforms, I wonder: Shouldn't we lay DEFLATE and ...
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 ...
3
votes
1answer
686 views
How to avoid thumbs.db files in compression
Is there a 7zip or winzip command to use so that the compression avoids thumbs.db files?
1
vote
1answer
3k views
Why do I get an “abstract error” when calling TJclCompressArchive.Compress?
I have the following code that always fails with an "Abstract Error":
arch := TJclCompressArchive.Create(GetDesktop + 'Support.7z');
try
with arch do
begin
if FindFirst('*.log', ...
-6
votes
4answers
2k views
Where is 7-Zip's compression source code? [closed]
I need the source code for the compression used in 7-Zip. Does anyone have a link?
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 ...
52
votes
5answers
23k views
How do I create 7-Zip archives with .NET?
How can I create 7-Zip archives from my C# console application? I need to be able to extract the archives using the regular, widely available 7-Zip program.
Here are my results with the examples ...
