.NET Zip component, Delphi Zip component, Barcode .NET, BDE Replacement and other .NET and Delphi components from ComponentAce
Products Download Order Contact us

Search
 

Delphi/C++ Components
.NET Components
ActiveX Controls
Kylix Components

Download

Download
Download Commercial
Trial Limitations

Support

Submit Request
Support Options

Order

Purchase
Competitive Upgrade
Premium Support
Sales Policy
Upgrade Policy
License Types

Info

News
Mailing List
Articles
Testimonials



About Us
Partners
Links
Contact Us
Link to Us





Home > Delphi/C++ Components > ZipForge > ZIP and comments in Delphi

Delphi Zip Component ZipForge

Overview | Features | Requirements | Testimonials | Manual | Code Samples | Download | Order
ZIP and comments Delphi code sample
This sample shows how to work with file and archive comments.

Download ZipForge | Learn More | All Delphi samples
program comments;

{$APPTYPE CONSOLE}

uses
  SysUtils, Classes, ZipForge;


var
  Archiver: TZipForge;
  fs: TStream;
  ai: TZFArchiveItem;
begin
  // create ZipForge object
  Archiver := TZipForge.Create(nil);
  try
    // set the archive file name
    Archiver.FileName := 'c:\test.zip';
    // create a new archive file
    Archiver.OpenArchive(fmCreate);
    // set archive file comment
    Archiver.Comment := 'archive comment';
    // add a file
    Archiver.AddFiles('c:\file.txt');
    // change comment
    Archiver.ChangeFilesComment('file.txt', 'file comment');
    // add another file
    Archiver.AddFiles('c:\file1.txt');
    // change comment
    Archiver.ChangeFilesComment('file1.txt', 'file1 comment');

    // close archive
    Archiver.CloseArchive();
    // write comments
    Archiver.OpenArchive;
    if Archiver.FindFirst('*.*', ai) then
      repeat
         WriteLn(ai.FileName + ' ' + ai.Comment);
      until not Archiver.FindNext(ai);
    ReadLn;
  except
     on E: Exception do
     begin
       Writeln('Error: ' + E.Message);
     end;
  end;
  fs.Free;
  Archiver.Free;
end.




Download ZipForge | Learn More | All Delphi samples


Product Info


Current version: 6.95
Released: January 21, 2019
Price: $ 69

downloadorder


Our Customers



Testimonials

Component Ace is all that it advertises. It is easy to implement and is very fast.

In addition, the customer support is the best I have ever had. All my questions were answered within hours, often immediately. The responses also answered my questions, no need for followup emails.

If your application needs the functionality that Component Ace provides, search no further.

Linda Murphy

        © 2003 - 2024 ComponentAce  | .net zip component | barcode for .net | delphi zip component | delphi database Mar 19, 2024