DELPHI ZIPFORGE ПРИМЕРЫ
ZipForge - это библиотека для создания и обработки архивов в Delphi, которая позволяет работать со всеми распространенными форматами архивов, в том числе ZIP, RAR, TAR и 7ZIP.
Ниже приведены примеры кода на Delphi, демонстрирующие основные функции библиотеки:
ZipFile := TZipForge.Create(nil);
try
ZipFile.FileName := 'test.zip';
ZipFile.OpenArchive(fmCreate);
ZipFile.AddFiles('*.txt');
ZipFile.CloseArchive();
finally
ZipFile.Free();
end;
ZipFile := TZipForge.Create(nil);
try
ZipFile.FileName := 'test.zip';
ZipFile.OpenArchive(fmOpenRead);
ZipFile.BaseDir := 'c:\temp\';
ZipFile.ExtractFiles('*.txt');
ZipFile.CloseArchive();
finally
ZipFile.Free();
end;
Кроме того, ZipForge позволяет работать с архивами в памяти, шифровать их, добавлять комментарии и многое другое.
List Box component in Delphi
Learn to code in Delphi - Part 6 - Variables
Multithreaded Zip File Extraction - Delphi #206
Learn to code in Delphi - Part 7 - Input Process Output
New 64 Bit Zip Support - Delphi #184
Delphi #179 - TZipFile FileComment Bug
Delphi Programming Tutorial #50 - ClientDataSets \u0026 DataSetProviders
JCLCompression and 7-Zip - Delphi #207
Delphi Programming - Full Beginner Crash Course
Full Stack Web Development with uniGUI for Delphi