리눅스 파일변경 알림 inotify

(Inotify에서 넘어옴)

1 개요[ | ]

inotify
아이노티파이
  • 파일시스템 이벤트 모니터링 도구
  • 파일시스템 이벤트 알림을 제공하는 리눅스 커널 서브시스템
struct inotify_event {
       int      wd;       /* Watch descriptor */
       uint32_t mask;     /* Mask of events */
       uint32_t cookie;   /* Unique cookie associating related
                             events (for rename(2)) */
       uint32_t len;      /* Size of name field */
       char     name[];   /* Optional null-terminated name */
};

2 같이 보기[ | ]

3 참고[ | ]

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}