inotify_add_watch
PHP Manual
PHP Manual»Функції Inotify»inotify_add_watch

inotify_add_watch

(PECL inotify >= 0.1.2)

inotify_add_watchAdd a watch to an initialized inotify instance

Опис

function 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.

Параметри

inotify_instance
Ресурс, що повертається функцією inotify_init()
pathname
File or directory to watch
mask
Events to watch for. See Попередньо визначені константи.

Значення, що повертаються

The return value is a unique (inotify instance wide) watch descriptor, або false в разі помилки.

Прогляньте також

To Top