CakeFest 2024: The Official CakePHP Conference

inotify_add_watch

(PECL inotify >= 0.1.2)

inotify_add_watchAdd a watch to an initialized inotify instance

Beschreibung

inotify_add_watch(resource $inotify_instance, string $pathname, int $mask): int|false

inotify_add_watch() adds a new watch or modify an existing watch for the file or directory specified in pathname.

Using inotify_add_watch() on a watched object replaces the existing watch. Using the IN_MASK_ADD constant adds (OR) events to the existing watch.

Parameter-Liste

inotify_instance

Von inotify_init() zurückgegebene Ressource

pathname

File or directory to watch

mask

Events to watch for. See Vordefinierte Konstanten.

Rückgabewerte

The return value is a unique (inotify instance wide) watch descriptor, Bei einem Fehler wird false zurückgegeben..

Siehe auch

add a note

User Contributed Notes 2 notes

up
5
lezsakdomi1 at gmail dot com
6 years ago
For an example see inotify_ini: http://php.net/inotify-init
up
5
lingtalfi
9 years ago
inotify_add_watch
returns false when you watch a non existing directory.
To Top