這篇文章主要介紹了python中文件變化監控範例(watchdog),小編覺得挺不錯的,現在分享給大家,也給大家做個參考。一起跟著小編過來看看吧
在python中檔案監控主要有兩個函式庫,一個是pyinotify ( https://github.com/seb-m/pyinotify/wiki ),一個是watchdog( http://pythonhosted.org/watchdog/)。 pyinotify依賴Linux平台的inotify,後者則對不同平台的的事件都進行了封裝。因為我主要用於Windows平台,所以下面著重介紹watchdog(推薦大家閱讀一下watchdog實作原始碼,有利於深刻的理解其中的原理)。
watchdog在不同的平台使用不同的方法進行檔案偵測。在init.py中發現瞭如下註解:
|Inotify| Linux 2.6.13+ ``inotify(7)`` based observer |FSEvents| Mac OS X FSEvents based observer |Kqueue| Mac OS X and BSD with kqueue(2) ``kqueue(2)`` based observer |WinApi|(ReadDirectoryChangesW) MS Windows Windows API-based observer |Polling| Any fallback implementation
給出範例程式碼如下:
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()
watchdog主要採用觀察者模型(廢話,從變數命名就可以看出來)。主要有三個角色:observer,event_handler,被監控的資料夾。三者原本是獨立的,主要透過observer.schedule函數將三者串起來,意思是observer不斷偵測呼叫平台依賴程式碼對監控資料夾進行變動偵測,當發現改變時,通知event_handler處理。最後特別推薦讀者有時間可以閱讀watchdog的源碼,寫的易懂而且架構很好。
以上是python中文件變化監控watchdog的範例的詳細內容。更多資訊請關注PHP中文網其他相關文章!