.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 a stream in Delphi

Delphi Zip Component ZipForge

Overview | Features | Requirements | Testimonials | Manual | Code Samples | Download | Order
Zip a stream in Delphi code sample
This sample demonstrates how easy it is to zip a stream with ZipForge

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

{$APPTYPE CONSOLE}

uses
  // Add a ZipForge unit to the program
  SysUtils, ZipForge, Classes;

var
  archiver : TZipForge;
  fileStream : TFileStream;

begin
  // Create an instance of the TZipForge class
  archiver := TZipForge.Create(nil);
  try
  with archiver do
  begin
    // Set the name of the archive file we want to create
    FileName := 'C:\test.zip';
    // Because we create a new archive,
    // we set Mode to fmCreate
    OpenArchive(fmCreate);
    // Set base (default) directory for all archive operations
    BaseDir := 'C:\';
    // Create the new TFileStream object for reading from the file.
    // If file doesn't exist, an exception will be thrown
    fileStream := TFileStream.Create('C:\test.txt', fmOpenReadWrite);
    // Add the stream to the archive.
    // Specify the name of the file in the archive,
    // where stream data is saved
    AddFromStream('anothername.txt', fileStream);
    CloseArchive();
  end;
  except
  on E: Exception do
    begin
      Writeln('Exception: ', E.Message);
      // Wait for the key to be pressed
      Readln;
    end;
  end;
end.



Download ZipForge | Learn More | All Delphi samples


Product Info


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

downloadorder


Our Customers



Testimonials

I don't think I've ever had a better support experience in regard to any of the 3rd party tools we use.

Tim Stickley

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