19 #include "qgis_core.h" 
   21 #include <QStringList> 
   38   CORE_EXPORT 
bool isZipFile( 
const QString &filename );
 
   49   CORE_EXPORT 
bool unzip( 
const QString &
zip, 
const QString &dir, QStringList &files 
SIP_OUT );
 
   59   CORE_EXPORT 
bool zip( 
const QString &
zip, 
const QStringList &files );
 
CORE_EXPORT bool isZipFile(const QString &filename)
Returns true if the file name is a zipped file ( i.e with a '.qgz' extension, false otherwise.
CORE_EXPORT bool unzip(const QString &zip, const QString &dir, QStringList &files)
Unzip a zip file in an output directory.
CORE_EXPORT bool zip(const QString &zip, const QStringList &files)
Zip the list of files in the zip file.