This sample shows how to delete a file from ZIP archive.
Download ZipForge | Learn More | All Delphi samples
program deletefile;
{$APPTYPE CONSOLE}
uses
SysUtils,
Classes,
ZipForge;
var
Archiver: TZipForge;
begin
Archiver := TZipForge.Create(nil);
try
Archiver.FileName := 'c:\test.zip';
Archiver.OpenArchive(fmOpenReadWrite);
Archiver.DeleteFiles('file.txt');
Archiver.CloseArchive();
except
on E: Exception do
begin
Writeln('Error: ' + E.Message);
end;
end;
Archiver.Free;
end.
Download ZipForge | Learn More | All Delphi samples |
|
|
Current version: 6.95
Released: January 21, 2019
Price: $ 69
|
|
The other people in the office didn't believe me when I said that all I had to do was document the problem and you would probably give me a fix overnight. Unbelievable! Keep up the great work. I hope you guys all make a fortune out of this product because it is truly fantastic and the support is the best I have ever encountered.
Mark Kefford
|
|
|