inotify_add_watch
(No version information available, might be only in CVS)
inotify_add_watch — Add a watch to an initialized inotify instance
説明
int inotify_add_watch
( resource $inotify_instance
, string $pathname
, int $mask
)
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.
inotify_add_watch
There are no user contributed notes for this page.
