Python Inotify 監視LINUX文件系統事件
Inotify 可以監視的LINUX文件系統事件包括:
--IN_ACCESS,即文件被訪問
--IN_MODIFY,文件被write
--IN_ATTRIB,文件屬性被修改,如chmod、chown、touch等
--IN_CLOSE_WRITE,可寫文件被close
--IN_CLOSE_NOWRITE,不可寫文件被close
--IN_OPEN,文件被open
--IN_MOVED_FROM,文件被移走,如mv
--IN_MOVED_TO,文件被移來,如mv、cp
--IN_CREATE,創建新文件
--IN_DELETE,文件被刪除,如rm
--IN_DELETE_SELF,自刪除,即一個可執行文件在執行時刪除自己
--IN_MOVE_SELF,自移動,即一個可執行文件在執行時移動自己
--IN_UNMOUNT,宿主文件系統被umount
--IN_CLOSE,文件被關閉,等同於(IN_CLOSE_WRITE | IN_CLOSE_NOWRITE)
--IN_MOVE,文件被移動,等同於(IN_MOVED_FROM | IN_MOVED_TO)
github主頁:https://github.com/seb-m/pyinotify/wiki/Events-types
安裝 pyinotify:
# pip install pyinotify
它會從默認倉庫安裝可用的版本,如果你想要最新的穩定版,可以按如下從 git 倉庫 clone 下來:
# git clone https://github.com/seb-m/pyinotify.git
# cd pyinotify/
# ls
# python setup.py install
如何在 Linux 中使用 pyinotify
#coding:utf8 #author:lcamry importos import pyinotify from functions import * WATCH_PATH = ‘‘ #監控目錄 if not WATCH_PATH: wlog(‘Error‘,"The WATCH_PATH setting MUST be set.") sys.exit() else: if os.path.exists(WATCH_PATH): wlog(‘Watch status‘,‘Found watch path: path=%s.‘ % (WATCH_PATH)) else: wlog(‘Error‘,‘The watch path NOT exists, watching stop now: path=%s.‘ % (WATCH_PATH)) sys.exit() class OnIOHandler(pyinotify.ProcessEvent): def process_IN_CREATE(self, event): wlog(‘Action‘,"create file: %s " % os.path.join(event.path,event.name)) def process_IN_DELETE(self, event): wlog(‘Action‘,"delete file: %s " % os.path.join(event.path,event.name)) def process_IN_MODIFY(self, event): wlog(‘Action‘,"modify file: %s " % os.path.join(event.path,event.name)) def auto_compile(path = ‘.‘): wm = pyinotify.WatchManager() mask = pyinotify.IN_CREATE | pyinotify.IN_DELETE | pyinotify.IN_MODIFY notifier = pyinotify.ThreadedNotifier(wm, OnIOHandler()) notifier.start() wm.add_watch(path, mask,rec = True,auto_add = True) wlog(‘Start Watch‘,‘Start monitoring %s‘ % path) while True: try: notifier.process_events() if notifier.check_events(): notifier.read_events() except KeyboardInterrupt: notifier.stop() break if __name__ == "__main__": auto_compile(WATCH_PATH)
更多例子見:https://www.cnblogs.com/hollyspirit/p/3182828.html
在下面的例子中,我以 root 用戶(通過 ssh 登錄)監視了用戶 tecmint 的家目錄(/home/tecmint)下的改變,如截圖所示:
# python -m pyinotify -v /home/tecmint
接下來,我會觀察到任何 web 目錄 (/var/www/html/http://tecmint.com) 的更改:
# python -m pyinotify -v /var/www/html/tecmint.com
要退出程序,只要按下 Ctrl+C。
註意:當你在運行 pyinotify 時如果沒有指定要監視的目錄,/tmp 將作為默認目錄。
Python Inotify 監視LINUX文件系統事件