- Notifications
You must be signed in to change notification settings - Fork0
PV_Packer - simple pure Pascal library to pack files to various archives (ZIP, RAR, TAR...)
License
NotificationsYou must be signed in to change notification settings
PascalVault/Lazarus_Packer
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
PV_Packer - simple pure Pascal library to pack files to various archives (ZIP, RAR, TAR...)
See also:https://github.com/PascalVault/Lazarus_Unpacker
- .ZIP
- .TAR
- .GZ
- .GZA
- .BH
- .RAR (method "store")
- .ARJ (method "store")
- .ACE (method "store")
- .LZH .LHA (method "store")
- .ARC (method "store")
- .ZOO (can be opened with IZarc) (method "store")
- encryption
uses PV_Packer;...var Zip: TPacker; beginZip := TPacker.Create('out.tar', 'tar');Zip.SetComment('Created by PV_Packer'); //not all formats support comments yetZip.AddFile('input file.txt', 'name in the archive.txt'); //orZip.AddFile('input file.txt');Zip.Free;
uses PV_Packer;...var Zip: TPacker; beginZip := TPacker.Create('out.gz', 'gz');Zip.SetComment('Created by PV_Packer'); Zip.AddFile('input file.txt', 'name in the archive.txt');Zip.AddFile('input file.txt'); //this returns False because there can be only 1 file in .GZIPZip.Free;
About
PV_Packer - simple pure Pascal library to pack files to various archives (ZIP, RAR, TAR...)
Topics
Resources
License
Uh oh!
There was an error while loading.Please reload this page.
Stars
Watchers
Forks
Releases
No releases published
Packages0
No packages published