1. inotify概述
inotify是一种文件变化通知机制,Linux内核从2.6.13开始引入,是一种跨平台的机制,在Linux、BSD、windows和Mac OS系统中各有支持的组件。
inotify可以高效地实时跟踪Linux文件系统的变化,在Linux系统中运行如下命令可以查看是否支持:
$ grep INOTIFY_USER /boot/config-$(uname -r)
CONFIG_INOTIFY_USER=y
inotify机制具有:
- 通知配置文件的改变
- 跟踪某些关键的系统文件的变化
- 监控某个分区磁盘的整体使用情况
- 系统崩溃时进行自动清理
- 自动触发备份进程
- 向服务器上传文件结束时发出通知
2. watchdog
pythonhosted.org/watchdog/
在python中文件监控主要有两个库:pyinotify和watchdog,pyinotify依赖与Linux平台的inotify,watchdog对不同平台的事件都进行了封装。
安装watchdog:
$ pip install watchdog
官网的实例代码:
import sys
import time
import logging
from watchdog.observers import Observer
from watchdog.events import LoggingEventHandler
if __name__ == "__main__":
logging.basicConfig(level=logging.INFO,
format='%(asctime)s - %(message)s',
datefmt='%Y-%m-%d %H:%M:%S')
path = sys.argv[1] if len(sys.argv) > 1 else '.'
event_handler = LoggingEventHandler()
observer = Observer()
observer.schedule(event_handler, path, recursive=True)
observer.start()
try:
while True:
time.sleep(1)
except KeyboardInterrupt:
observer.stop()
observer.join()
# 运行代码,在当前路径下文件系统变化时 会输出Log
2017-03-07 16:22:22 - Created file: ./new.txt
2017-03-07 16:22:22 - Modified directory: .
2017-03-07 16:22:22 - Modified file: ./new.txt
2017-03-07 16:22:41 - Deleted file: ./new.txt
2017-03-07 16:22:41 - Modified directory: .