Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

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

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

Supported formats

  • .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")

Unsupported, yet

  • encryption

Usage

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;

Usage - GZIP

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

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages


[8]ページ先頭

©2009-2025 Movatter.jp