/******************************************************************** * Linux 监视文件、文件夹改动 * 说明: * 主要是为了解决当配置文件被修改时,需要重新对配置文件解析,并应用 * 配置文件,这样可以解决修改了配置文件,需要重启系统或者重启软件的需求。 * * 2017-4-26 深圳 龙华樟坑村 曾剑锋 *******************************************************************/ 一、参考文档: 1. Inotify: 高效、实时的Linux文件系统事件监控框架 http://www.infoq.com/cn/articles/inotify-linux-file-system-event-monitoring 2. inotify监控linux系统下的目录变化 http://www.iteye.com/topic/747414 3. 使用 inotify 监控 Linux 文件系统事件 https://www.ibm.com/developerworks/cn/linux/l-inotify.html 4. inotify -- Linux 2.6 内核中的文件系统变化通知机制 https://www.ibm.com/developerworks/cn/linux/l-inotifynew/index.html 5. 简单了解Python下用于监视文件系统的pyinotify包 http://www.jb51.net/article/74842.htm 6. pyinotify简单实用(用于文件系统监控) https://my.oschina.net/zhangxu0512/blog/382867 7. inotify-tools使用方法介绍 https://www.centos.bz/2012/06/inotify-tools-introduction/ 二、解决办法: 1. 采用C语言,请参考参考文档:《inotify -- Linux 2.6 内核中的文件系统变化通知机制》 2. 采用Python,请参考参考文档:https://github.com/seb-m/pyinotify/wiki
时间: 2024-10-12 09:39:44