Go to file
openKylinBot 64d938b8b1 changed debian/source/format to native 2022-05-19 09:49:01 +08:00
LICENSES Import Upstream version 5.92.0 2022-05-19 09:49:00 +08:00
autotests Import Upstream version 5.92.0 2022-05-19 09:49:00 +08:00
debian changed debian/source/format to native 2022-05-19 09:49:01 +08:00
docs Import Upstream version 5.92.0 2022-05-19 09:49:00 +08:00
examples Import Upstream version 5.92.0 2022-05-19 09:49:00 +08:00
src Import Upstream version 5.92.0 2022-05-19 09:49:00 +08:00
test_package Import Upstream version 5.92.0 2022-05-19 09:49:00 +08:00
tests Import Upstream version 5.92.0 2022-05-19 09:49:00 +08:00
.git-blame-ignore-revs Import Upstream version 5.92.0 2022-05-19 09:49:00 +08:00
.gitignore Import Upstream version 5.92.0 2022-05-19 09:49:00 +08:00
.gitlab-ci.yml Import Upstream version 5.92.0 2022-05-19 09:49:00 +08:00
.kde-ci.yml Import Upstream version 5.92.0 2022-05-19 09:49:00 +08:00
AUTHORS Import Upstream version 5.92.0 2022-05-19 09:49:00 +08:00
CMakeLists.txt Import Upstream version 5.92.0 2022-05-19 09:49:00 +08:00
INSTALL Import Upstream version 5.92.0 2022-05-19 09:49:00 +08:00
KF5ArchiveConfig.cmake.in Import Upstream version 5.92.0 2022-05-19 09:49:00 +08:00
README.md Import Upstream version 5.92.0 2022-05-19 09:49:00 +08:00
conanfile.py Import Upstream version 5.92.0 2022-05-19 09:49:00 +08:00
metainfo.yaml Import Upstream version 5.92.0 2022-05-19 09:49:00 +08:00

README.md

KArchive

Reading, creating, and manipulating file archives

Introduction

KArchive provides classes for easy reading, creation and manipulation of "archive" formats like ZIP and TAR.

It also provides transparent compression and decompression of data, like the GZip format, via a subclass of QIODevice.

Usage

If you want to read and write compressed data, just create an instance of KCompressionDevice and write to or read from that.

If you want to read and write archive formats, create an instance of the appropriate subclass of KArchive (eg: K7Zip for 7-Zip files). You may need to combine this with usage of KCompressionDevice (see the API documentation for the relevant KArchive subclass for details).