Path: csiph.com!usenet.pasdenom.info!gegeweb.org!eternal-september.org!feeder.eternal-september.org!mx05.eternal-september.org!.POSTED!not-for-mail From: aminer Newsgroups: comp.programming,comp.programming.threads Subject: Re: Parallel archiver using my ParallelZlib is here... Date: Sat, 16 Feb 2013 08:52:11 -0800 Organization: A noiseless patient Spider Lines: 31 Message-ID: References: Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Injection-Date: Sat, 16 Feb 2013 13:51:24 +0000 (UTC) Injection-Info: mx05.eternal-september.org; posting-host="8427fd05edc201bb6b1d125b80ca38e6"; logging-data="504"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX18jA5KPlSwkhshj4Hww6PqsMwRe6zXGlnk=" User-Agent: Mozilla/5.0 (Windows NT 6.0; WOW64; rv:17.0) Gecko/20130107 Thunderbird/17.0.2 In-Reply-To: Cancel-Lock: sha1:QSHS3m6lMkk5Qq7twO6v6THu14o= Xref: csiph.com comp.programming:3033 comp.programming.threads:1367 Hello, Also, i have included the FindFile component, it's very easy to use, here is how to use it: ff:=TFindFile.create(nil); // the constructor ff.recurse:=true; // recurse on directories ff.directory:='c:\zip'; // your directory ff.Attributes:=[ffArchive]; ff.filter:='*.*'; // your files.. ff.execute; // and execute After that you pass the ff.files (that is a TStrings) to the AddFiles() method. That's very easy. Pealse look at the test.pas demo inside the zip file to see how to use my Parallel archiver. Thank's Amine Moulay Ramdane