KaZip for C++Builder2009/Delphi
- by Katsumi
Hi.
I have download and install KaZip2.0 on C++Builder2009 (with little minor changes = only set type String to AnsiString). I have write:
KAZip1->FileName = "test.zip";
KAZip1->CreateZip("test.zip");
KAZip1->Active = true;
KAZip1->Entries->AddFile("pack\\text.txt","xxx.txt");
KAZip1->Active = false;
KAZip1->Close();
now he…