class KArchiveDirectory |
|
|
Represents a directory entry in a KArchive. A directory in an archive. See also KArchive See also KArchiveFile |
|
Creates a new directory entry. archive - the entries archive name - the name of the entry access - the permissions in unix format date - the date (in seconds since 1970) user - the user that owns the entry group - the group that owns the entry symlink - the symlink, or QString() |
|
Internal Adds a new entry to the directory. |
|
Extracts all entries in this archive directory to the directory dest. dest - the directory to extract to recursive - if set to true, subdirectories are extracted as well |
|
Returns a list of sub-entries. Note that the list is not sorted, it's even in random order (due to using a hashtable). Use sort() on the result to sort the list by filename. Returns the names of all entries in this directory (filenames, no path). |
|
Returns the entry with the given name. name - may be "test1", "mydir/test3", "mydir/mysubdir/test3", etc. Returns a pointer to the entry in the directory. |
|
Checks whether this entry is a directory. Returns true, since this entry is a directory |