OSCAR-code/oscar/zip.h
sawinglogz 1c4c7871da Add zip creation of SD card data.
This uses the miniz library, which is self-contained in a single
.c/.h pair and has an MIT license.

Swapping out the zip library should be fairly straightforward
if ever necessary.
2020-01-21 17:37:37 -05:00

30 lines
790 B
C++

/* OSCAR ZIP archive creation
* Provides a Qt-convenient wrapper around miniz, see https://github.com/richgel999/miniz
*
* Copyright (c) 2020 The OSCAR Team
*
* This file is subject to the terms and conditions of the GNU General Public
* License. See the file COPYING in the main directory of the source code
* for more details. */
#include <QString>
#include <QDir>
#include <QFile>
class ZipFile
{
public:
ZipFile();
virtual ~ZipFile();
bool Open(const QString & filepath);
bool Add(const QDir & root);
bool Add(const QDir & dir, const QString & archive_name); // add a directory and recurse
bool Add(const QString & path, const QString & archive_name); // add a file and recurse
void Close();
protected:
void* m_ctx;
QFile m_file;
};