.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 > Add a Stream to ZIP archive in Delphi

Delphi Zip Component ZipForge

Overview | Features | Requirements | Testimonials | Manual | Code Samples | Download | Order
Add a Stream to ZIP archive Delphi code sample
This sample shows how to add a data from a stream into a ZIP archive.

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

{$APPTYPE CONSOLE}

uses
  SysUtils, Classes, ZipForge;


var
  Archiver: TZipForge;
  fs: TStream;
begin
  // create ZipForge object
  Archiver := TZipForge.Create(nil);
  // create a file stream
  fs := TFileStream.Create('c:\file.txt', fmOpenRead);
  try
    // set the archive file name
    Archiver.FileName := 'c:\test.zip';
    // create a new archive file
    Archiver.OpenArchive(fmCreate);
    // save data from the file stream into "data.txt" file inside the archive
    Archiver.AddFromStream('data.txt', fs);
    // close archive
    Archiver.CloseArchive();
  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

We made three requests of the technical support personnel and despite the fact that these were all implementation questions (not bugs in their software) we received support within 24 hours. It is rare to get such good customer support these days and I really appreciate everything ComponentAce has done for us.

Jason Goodridge, Development Manager

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