.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 > Replace a file in ZIP archive in Delphi

Delphi Zip Component ZipForge

Overview | Features | Requirements | Testimonials | Manual | Code Samples | Download | Order
Replace a file in ZIP archive Delphi code sample
This sample shows how to replace files in ZIP with newer files.

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

{$APPTYPE CONSOLE}

uses
  SysUtils,
  Classes,
  ZipForge;

var
  Archiver: TZipForge;
begin
  // create ZipForge object
  Archiver := TZipForge.Create(nil);
  try
    // set the archive file name
    Archiver.FileName := 'c:\test.zip';
    // open archive
    Archiver.OpenArchive(fmOpenReadWrite);
    // add .txt files; older files will be replaced with newer
    Archiver.Options.OverwriteMode := omIfNewer;
    Archiver.BaseDir := 'C:\txt';
    Archiver.AddFiles('*.txt');
    // close archive
    Archiver.CloseArchive();
  except
     on E: Exception do
     begin
       Writeln('Error: ' + E.Message);
     end;
  end;
  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

Thanks again for the superb tech support, I was worried I'd hit a brick wall this close to the finish line. Even working on the weekend... you guys rock!!!

Bob Boyd

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