Quark
0.1
|
A class representing an entry in a Zip archive. More...
#include <ZipEntry.h++>
Public Member Functions | |
ZipEntry () | |
Constructor. More... | |
virtual | ~ZipEntry () |
Destructor. More... | |
qint64 | index () const |
Returns the index of the entry within the archive. More... | |
QString | path () const |
Returns the file path of the entry. More... | |
bool | isDirectory () const |
Tests if the entry represents a directory. More... | |
qint64 | size () const |
Returns the uncompressed file size. More... | |
qint64 | compressedSize () const |
Returns the compressed file size. More... | |
QDateTime | modificationTime () const |
Returns the file's last modification time. More... | |
quint32 | crc () const |
Returns the CRC for the data in the entry. More... | |
quint16 | compressionMethod () const |
Returns the compression method for the entry. More... | |
quint16 | encryptionMethod () const |
Returns the encryption method for the entry. More... | |
bool | isValid () const |
Tests if this entry is valid. More... | |
Friends | |
class | ZipFile |
A class representing an entry in a Zip archive.
ZipEntry | ( | ) |
Constructor.
|
virtual |
Destructor.
|
inline |
Returns the compressed file size.
|
inline |
Returns the compression method for the entry.
|
inline |
Returns the CRC for the data in the entry.
|
inline |
Returns the encryption method for the entry.
|
inline |
Returns the index of the entry within the archive.
bool isDirectory | ( | ) | const |
Tests if the entry represents a directory.
bool isValid | ( | ) | const |
Tests if this entry is valid.
|
inline |
Returns the file's last modification time.
|
inline |
Returns the file path of the entry.
|
inline |
Returns the uncompressed file size.
|
friend |