• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

LICENSES/H03-May-2022-

autotests/H03-May-2022-2,6411,940

docs/H04-Dec-2021-86

examples/H04-Dec-2021-262122

src/H03-May-2022-10,9507,465

test_package/H03-May-2022-3022

tests/H03-May-2022-600472

.git-blame-ignore-revsH A D04-Dec-2021142 54

.gitignoreH A D04-Dec-2021298 2827

.gitlab-ci.ymlH A D04-Dec-2021373 86

.kde-ci.ymlH A D04-Dec-2021131 86

AUTHORSH A D04-Dec-2021234 116

INSTALLH A D04-Dec-2021748 2415

KF5ArchiveConfig.cmake.inH A D04-Dec-2021728 3324

README.mdH A D04-Dec-2021721 2314

conanfile.pyH A D04-Dec-20211.1 KiB3222

metainfo.yamlH A D04-Dec-2021361 2220

README.md

1# KArchive
2
3Reading, creating, and manipulating file archives
4
5## Introduction
6
7KArchive provides classes for easy reading, creation and manipulation of
8"archive" formats like ZIP and TAR.
9
10It also provides transparent compression and decompression of data, like the
11GZip format, via a subclass of QIODevice.
12
13## Usage
14
15If you want to read and write compressed data, just create an instance of
16KCompressionDevice and write to or read from that.
17
18If you want to read and write archive formats, create an instance of the
19appropriate subclass of KArchive (eg: K7Zip for 7-Zip files).  You may need to
20combine this with usage of KCompressionDevice (see the API documentation for the
21relevant KArchive subclass for details).
22
23