Linux 目錄變化監聽 - python代碼實現

在python中 文件監控主要有兩個庫,html

一個是pyinotify ( https://github.com/seb-m/pyinotify/wiki ),pyinotify依賴於Linux平臺的inotify。python

一個是watchdog(http://pythonhosted.org/watchdog/)。對不一樣平臺的的事件都進行了封裝。git

 

一、watchdog實現github

  

from watchdog.observers import Observer
from watchdog.events import *
import time

class FileEventHandler(FileSystemEventHandler):
    def __init__(self):
        FileSystemEventHandler.__init__(self)

    def on_moved(self, event):
        if event.is_directory:
            print("directory moved from {0} to {1}".format(event.src_path,event.dest_path))
        else:
            print("file moved from {0} to {1}".format(event.src_path,event.dest_path))

    def on_created(self, event):
        if event.is_directory:
            print("directory created:{0}".format(event.src_path))
        else:
            print("file created:{0}".format(event.src_path))

    def on_deleted(self, event):
        if event.is_directory:
            print("directory deleted:{0}".format(event.src_path))
        else:
            print("file deleted:{0}".format(event.src_path))

    def on_modified(self, event):
        if event.is_directory:
            print("directory modified:{0}".format(event.src_path))
        else:
            print("file modified:{0}".format(event.src_path))

if __name__ == "__main__":
    observer = Observer()
    event_handler = FileEventHandler()
    observer.schedule(event_handler,"d:/dcm",True)
    observer.start()
    try:
        while True:
            time.sleep(1)
    except KeyboardInterrupt:
        observer.stop()
    observer.join()

 

 

二、pyinotify  spa

  http://outofmemory.cn/code-snippet/84447/Linux-environment-jiankong-directory-variety-Python-code-segmentcode

http://www.cppcns.com/jiaoben/python/125108.htmlorm

相關文章
相關標籤/搜索