Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.compression > #3688

My Parallel archiver version 4.6 is here..

From Intelli2 <intelli2@mama.com>
Newsgroups comp.compression
Subject My Parallel archiver version 4.6 is here..
Date 2017-12-12 11:07 -0500
Organization A noiseless patient Spider
Message-ID <p0ous8$dub$3@dont-email.me> (permalink)

Show all headers | View raw


Hello..

My Parallel archiver version 4.6 is here..

I have deleted the property LoadStreamIndex because it has introduced a 
bug, and i have solved it by adding the following methods: CopyArchive() 
that copy the archive to a stream and a new ExtractAll() that extract 
from a stream, i have documented the methods, please read the readme 
file inside the zip file.

Here is an example of how to use the above new methods, this example 
will extract an archive from a stream without loading the index, and it 
will copy the archive to the a stream:

==

PROGRAM test_pl;

uses cmem,PLZ4Archiver,system.classes,system.sysutils,findfile;

var
mem:TMemoryStream;
pzr: TPLZ4Archiver;
str:UTF8String;
i:integer;
fstream1,fstream2:TFileStream;

Begin
fstream1:=TFileStream.create('amine1.z', fmOpenReadWrite);
fstream2:=TFileStream.create('amine1.z', fmCreate);

pzr :=TPLZ4Archiver.Create('',1000,4);
pzr.indicator:=true; // to show the compression and decompression rate
pzr.password:='amine';
pzr.Stream:=fstream1;

if not pzr.ExtractAll('c:\tmp1000') then writeln('not ok...');

pzr.CopyArchive(fstream2);
pzr.free;

fstream2.free;

End.

===


And now i think that my Parallel archiver version 4.6 is much more 
stable and fast.

You can download my new Parallel archiver 4.6 from:

https://sites.google.com/site/aminer68/parallel-archiver

Thank you,
Amine Moulay Ramdane.

Back to comp.compression | Previous | Next | Find similar | Unroll thread


Thread

My Parallel archiver version 4.6 is here.. Intelli2 <intelli2@mama.com> - 2017-12-12 11:07 -0500

csiph-web