KIO
KIO::StatJob Class Reference
A KIO job that retrieves information about a file or directory. More...
#include <jobclasses.h>

Public Types | |
| enum | StatSide { SourceSide, DestinationSide } |
Signals | |
| void | permanentRedirection (KIO::Job *job, const KUrl &fromUrl, const KUrl &toUrl) |
| void | redirection (KIO::Job *job, const KUrl &url) |
Public Member Functions | |
| ~StatJob () | |
| KUrl | mostLocalUrl () const |
| void | setDetails (short int details) |
| void | setSide (StatSide side) |
| void | setSide (bool source) |
| const UDSEntry & | statResult () const |
Protected Slots | |
| virtual void | slotFinished () |
| virtual void | slotMetaData (const KIO::MetaData &_metaData) |
Protected Member Functions | |
| StatJob (StatJobPrivate &dd) | |
Detailed Description
A KIO job that retrieves information about a file or directory.
- See also:
- KIO::stat()
Definition at line 441 of file jobclasses.h.
Member Enumeration Documentation
Definition at line 446 of file jobclasses.h.
Constructor & Destructor Documentation
Member Function Documentation
| KUrl StatJob::mostLocalUrl | ( | ) | const |
most local URL Call this in the slot connected to result, and only after making sure no error happened.
- Returns:
- the most local URL for the URL we were stat'ing.
Sample usage: KIO::StatJob* job = KIO::mostLocalUrl("desktop:/foo"); job->ui()->setWindow(this); connect(job, SIGNAL(result(KJob*)), this, SLOT(slotMostLocalUrlResult(KJob*))); [...] // and in the slot if (job->error()) { [...] // doesn't exist } else { const KUrl localUrl = job->mostLocalUrl(); // localUrl = file:///$HOME/Desktop/foo [...] }
- Since:
- 4.4
| void KIO::StatJob::permanentRedirection | ( | KIO::Job * | job, |
| const KUrl & | fromUrl, | ||
| const KUrl & | toUrl | ||
| ) | [signal] |
Signals a permanent redirection.
The redirection itself is handled internally.
- Parameters:
-
job the job that is redirected fromUrl the original URL toUrl the new URL
Signals a redirection.
Use to update the URL shown to the user. The redirection itself is handled internally.
- Parameters:
-
job the job that is redirected url the new url
| void StatJob::setDetails | ( | short int | details | ) |
Selects the level of details we want.
By default this is 2 (all details wanted, including modification time, size, etc.), setDetails(1) is used when deleting: we don't need all the information if it takes too much time, no need to follow symlinks etc. setDetails(0) is used for very simple probing: we'll only get the answer "it's a file or a directory, or it doesn't exist". This is used by KRun.
- Parameters:
-
details 2 for all details, 1 for simple, 0 for very simple
| void StatJob::setSide | ( | bool | source | ) |
A stat() can have two meanings.
Either we want to read from this URL, or to check if we can write to it. First case is "source", second is "dest". It is necessary to know what the StatJob is for, to tune the kioslave's behavior (e.g. with FTP).
- Parameters:
-
source true for "source" mode, false for "dest" mode
| void StatJob::setSide | ( | StatSide | side | ) |
| void StatJob::slotFinished | ( | ) | [protected, virtual, slot] |
Called when the slave marks the job as finished.
Reimplemented from KIO::SimpleJob.
| void StatJob::slotMetaData | ( | const KIO::MetaData & | _metaData | ) | [protected, virtual, slot] |
MetaData from the slave is received.
- Parameters:
-
_metaData the meta data
- See also:
- metaData()
Reimplemented from KIO::SimpleJob.
| const UDSEntry & StatJob::statResult | ( | ) | const |
The documentation for this class was generated from the following files:
KDE 4.6 API Reference