Home · All Classes · Main Classes · Grouped Classes · Modules · Functions |
The QFileSystemWatcher class provides an interface for monitoring files and directories for modifications. More...
#include <QFileSystemWatcher>
Inherits QObject.
Note: All the functions in this class are reentrant.
This class was introduced in Qt 4.2.
The QFileSystemWatcher class provides an interface for monitoring files and directories for modifications.
QFileSystemWatcher monitors the file system for changes to files and directories by watching a list of specified paths.
Call addPath() to watch a particular file or directory. Multiple paths can be added using the addPaths() function. Existing paths can be removed by using the removePath() and removePaths() functions.
QFileSystemWatcher examines each path added to it. Files that have been added to the QFileSystemWatcher can be accessed using the files() function, and directories using the directories() function.
The fileChanged() signal is emitted when a file has been modified or removed from disk. Similarly, the directoryChanged() signal is emitted when a directory is modified or removed. Note that QFileSystemWatcher stops monitoring files and directories once they have been removed from disk.
Constructs a new file system watcher object with the given parent.
Constructs a new file system watcher object with the given parent which monitors the specified paths list.
Destroys the file system watcher.
Adds path to the file system watcher if path exists. The path is not added if it does not exist, or if it is already being monitored by the file system watcher.
If path specifies a directory, the directoryChanged() signal will be emitted when path is modified or removed from disk; otherwise the fileChanged() signal is emitted when path is modified or removed.
See also addPaths() and removePath().
Adds each path in paths to the file system watcher. Paths are not added if they not exist, or if they are already being monitored by the file system watcher.
If a path specifies a directory, the directoryChanged() signal will be emitted when the path is modified or removed from disk; otherwise the fileChanged() signal is emitted when the path is modified or removed.
See also addPath() and removePaths().
Returns a list of paths to directories that are being watched.
See also files().
This signal is emitted when the directory at the specified path is modified or removed from disk.
See also fileChanged().
This signal is emitted when the file at the specified path is modified or removed from disk.
See also directoryChanged().
Returns a list of paths to files that are being watched.
See also directories().
Removes the specified path from the file system watcher.
See also removePaths() and addPath().
Removes the specified paths from the file system watcher.
See also removePath() and addPaths().
Copyright © 2007 Trolltech | Trademarks | Qt 4.2.3 |