最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

Python文件監(jiān)聽工具pyinotify與watchdog實例

 更新時間:2018年10月15日 15:26:11   作者:數(shù)據(jù)架構(gòu)師  
今天小編就為大家分享一篇關(guān)于Python文件監(jiān)聽工具pyinotify與watchdog實例,小編覺得內(nèi)容挺不錯的,現(xiàn)在分享給大家,具有很好的參考價值,需要的朋友一起跟隨小編來看看吧

pyinotify庫

支持的監(jiān)控事件

@cvar IN_ACCESS: File was accessed.
@type IN_ACCESS: int
@cvar IN_MODIFY: File was modified.
@type IN_MODIFY: int
@cvar IN_ATTRIB: Metadata changed.
@type IN_ATTRIB: int
@cvar IN_CLOSE_WRITE: Writtable file was closed.
@type IN_CLOSE_WRITE: int
@cvar IN_CLOSE_NOWRITE: Unwrittable file closed.
@type IN_CLOSE_NOWRITE: int
@cvar IN_OPEN: File was opened.
@type IN_OPEN: int
@cvar IN_MOVED_FROM: File was moved from X.
@type IN_MOVED_FROM: int
@cvar IN_MOVED_TO: File was moved to Y.
@type IN_MOVED_TO: int
@cvar IN_CREATE: Subfile was created.
@type IN_CREATE: int
@cvar IN_DELETE: Subfile was deleted.
@type IN_DELETE: int
@cvar IN_DELETE_SELF: Self (watched item itself) was deleted.
@type IN_DELETE_SELF: int
@cvar IN_MOVE_SELF: Self (watched item itself) was moved.
@type IN_MOVE_SELF: int
@cvar IN_UNMOUNT: Backing fs was unmounted.
@type IN_UNMOUNT: int
@cvar IN_Q_OVERFLOW: Event queued overflowed.
@type IN_Q_OVERFLOW: int
@cvar IN_IGNORED: File was ignored.
@type IN_IGNORED: int
@cvar IN_ONLYDIR: only watch the path if it is a directory (new
         in kernel 2.6.15).
@type IN_ONLYDIR: int
@cvar IN_DONT_FOLLOW: don't follow a symlink (new in kernel 2.6.15).
           IN_ONLYDIR we can make sure that we don't watch
           the target of symlinks.
@type IN_DONT_FOLLOW: int
@cvar IN_EXCL_UNLINK: Events are not generated for children after they
           have been unlinked from the watched directory.
           (new in kernel 2.6.36).
@type IN_EXCL_UNLINK: int
@cvar IN_MASK_ADD: add to the mask of an already existing watch (new
          in kernel 2.6.14).
@type IN_MASK_ADD: int
@cvar IN_ISDIR: Event occurred against dir.
@type IN_ISDIR: int
@cvar IN_ONESHOT: Only send event once.
@type IN_ONESHOT: int
@cvar ALL_EVENTS: Alias for considering all of the events.
@type ALL_EVENTS: int

python 3.6的demo

import sys
import os
import pyinotify
WATCH_PATH = '/home/lp/ftp' # 監(jiān)控目錄
if not WATCH_PATH:
  print("The WATCH_PATH setting MUST be set.")
  sys.exit()
else:
  if os.path.exists(WATCH_PATH):
    print('Found watch path: path=%s.' % (WATCH_PATH))
  else:
    print('The watch path NOT exists, watching stop now: path=%s.' % (WATCH_PATH))
    sys.exit()
# 事件回調(diào)函數(shù)
class OnIOHandler(pyinotify.ProcessEvent):
  # 重寫文件寫入完成函數(shù)
  def process_IN_CLOSE_WRITE(self, event):
    # logging.info("create file: %s " % os.path.join(event.path, event.name))
    # 處理成小圖片,然后發(fā)送給grpc服務(wù)器或者發(fā)給kafka
    file_path = os.path.join(event.path, event.name)
    print('文件完成寫入',file_path)
  # 重寫文件刪除函數(shù)
  def process_IN_DELETE(self, event):
    print("文件刪除: %s " % os.path.join(event.path, event.name))
  # 重寫文件改變函數(shù)
  def process_IN_MODIFY(self, event):
    print("文件改變: %s " % os.path.join(event.path, event.name))
  # 重寫文件創(chuàng)建函數(shù)
  def process_IN_CREATE(self, event):
    print("文件創(chuàng)建: %s " % os.path.join(event.path, event.name))
def auto_compile(path='.'):
  wm = pyinotify.WatchManager()
  # mask = pyinotify.EventsCodes.ALL_FLAGS.get('IN_CREATE', 0)
  # mask = pyinotify.EventsCodes.FLAG_COLLECTIONS['OP_FLAGS']['IN_CREATE']               # 監(jiān)控內(nèi)容,只監(jiān)聽文件被完成寫入
  mask = pyinotify.IN_CREATE | pyinotify.IN_CLOSE_WRITE
  notifier = pyinotify.ThreadedNotifier(wm, OnIOHandler())  # 回調(diào)函數(shù)
  notifier.start()
  wm.add_watch(path, mask, rec=True, auto_add=True)
  print('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)
  print('monitor close')

watchdog庫

支持的監(jiān)控事件

EVENT_TYPE_MODIFIED: self.on_modified,
EVENT_TYPE_MOVED: self.on_moved,
EVENT_TYPE_CREATED: self.on_created,
EVENT_TYPE_DELETED: self.on_deleted,

需要注意的是,文件改變,也會觸發(fā)文件夾的改變

python3.6的demo

#! /usr/bin/env python
# -*- coding: utf-8 -*-
from __future__ import print_function
import asyncio
import base64
import logging
import os
import shutil
import sys
from datetime import datetime
from watchdog.events import FileSystemEventHandler
from watchdog.observers import Observer
WATCH_PATH = '/home/lp/ftp' # 監(jiān)控目錄
class FileMonitorHandler(FileSystemEventHandler):
 def __init__(self, **kwargs):
  super(FileMonitorHandler, self).__init__(**kwargs)
  # 監(jiān)控目錄 目錄下面以device_id為目錄存放各自的圖片
  self._watch_path = WATCH_PATH
 # 重寫文件改變函數(shù),文件改變都會觸發(fā)文件夾變化
 def on_modified(self, event):
  if not event.is_directory: # 文件改變都會觸發(fā)文件夾變化
   file_path = event.src_path
   print("文件改變: %s " % file_path)
if __name__ == "__main__":
 event_handler = FileMonitorHandler()
 observer = Observer()
 observer.schedule(event_handler, path=WATCH_PATH, recursive=True) # recursive遞歸的
 observer.start()
 observer.join()

總結(jié)

以上就是這篇文章的全部內(nèi)容了,希望本文的內(nèi)容對大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價值,謝謝大家對腳本之家的支持。如果你想了解更多相關(guān)內(nèi)容請查看下面相關(guān)鏈接

相關(guān)文章

  • 使用python svm實現(xiàn)直接可用的手寫數(shù)字識別

    使用python svm實現(xiàn)直接可用的手寫數(shù)字識別

    這篇文章主要介紹了使用python svm實現(xiàn)直接可用的手寫數(shù)字識別,現(xiàn)在網(wǎng)上很多代碼是良莠不齊,真是一言難盡,于是記錄一下,能夠運行成功并識別成功的一個源碼
    2021-08-08
  • Python的ORM框架中SQLAlchemy庫的查詢操作的教程

    Python的ORM框架中SQLAlchemy庫的查詢操作的教程

    這篇文章主要介紹了Python的ORM框架中SQLAlchemy庫的查詢操作的教程,SQLAlchemy用來操作數(shù)據(jù)庫十分方便,需要的朋友可以參考下
    2015-04-04
  • python實現(xiàn)畫循環(huán)圓

    python實現(xiàn)畫循環(huán)圓

    今天小編就為大家分享一篇python實現(xiàn)畫循環(huán)圓,具有很好的參考價值,希望對大家有所幫助。一起跟隨小編過來看看吧
    2019-11-11
  • Python爬蟲HTPP請求方法有哪些

    Python爬蟲HTPP請求方法有哪些

    在本篇內(nèi)容里小編給大家整理的是關(guān)于Python爬蟲HTPP請求方法以及相關(guān)知識點,需要的朋友們可以參考下。
    2020-06-06
  • python設(shè)置隨機種子實例講解

    python設(shè)置隨機種子實例講解

    在本篇文章里小編給大家整理的是關(guān)于python設(shè)置隨機種子的相關(guān)知識點以及實例內(nèi)容,需要的朋友們學(xué)習(xí)下。
    2019-09-09
  • Pandas處理時間序列數(shù)據(jù)操作詳解

    Pandas處理時間序列數(shù)據(jù)操作詳解

    這篇文章主要介紹了Pandas處理時間序列數(shù)據(jù)操作詳解,文章首先利用python自帶datetime庫,通過調(diào)用此庫可以獲取本地時間展開內(nèi)容說明具有一定的參考價值,需要的小伙伴可以參考一下
    2022-06-06
  • Python中五種列表拷貝的方法

    Python中五種列表拷貝的方法

    這篇文章主要介紹了Python中五種列表拷貝的方法,在Python中,我們經(jīng)常會遇到需要拷貝列表的情形,下面針對常用的列表拷貝方法進行介紹和總結(jié),希望可以給大家?guī)砀喔行缘恼J識
    2022-02-02
  • OpenCV-Python使用分水嶺算法實現(xiàn)圖像的分割與提取

    OpenCV-Python使用分水嶺算法實現(xiàn)圖像的分割與提取

    在圖像的處理過程中,經(jīng)常需要從圖像中將前景對象作為目標圖像分割或者提取出來。本文就介紹了使用分水嶺算法實現(xiàn)圖像的分割與提取,感興趣的可以了解一下
    2021-06-06
  • python?pip安裝的包目錄(site-packages目錄的位置)

    python?pip安裝的包目錄(site-packages目錄的位置)

    這篇文章主要介紹了python?pip安裝的包放在哪里(site-packages目錄的位置),本文給大家介紹的非常詳細,對大家的學(xué)習(xí)或工作具有一定的參考借鑒價值,需要的朋友可以參考下
    2023-03-03
  • python2.7讀取文件夾下所有文件名稱及內(nèi)容的方法

    python2.7讀取文件夾下所有文件名稱及內(nèi)容的方法

    python,本身來說是一門高級編程語言,python它入門簡單,有基礎(chǔ)的學(xué)起來很快就能有簡單的應(yīng)用,但是在非常高的抽象計算中,高級的python程序設(shè)計也是非常難學(xué)的。接下來給大家介紹python2.7讀取文件夾下所有文件名稱及內(nèi)容的方法,一起看看吧
    2018-02-02

最新評論

玛沁县| 沈丘县| 杨浦区| 柳河县| 双流县| 浦东新区| 舞钢市| 江安县| 古浪县| 锡林浩特市| 桦南县| 龙泉市| 阜南县| 宁化县| 拜泉县| 丹阳市| 清水河县| 通榆县| 郸城县| 绥中县| 克拉玛依市| 讷河市| 奎屯市| 镇宁| 曲水县| 深圳市| 禄劝| 正宁县| 马龙县| 炎陵县| 葵青区| 寿宁县| 皋兰县| 富阳市| 禄丰县| 三河市| 宁海县| 社旗县| 台南市| 木里| 瑞安市|