Python 最佳实践-观看目录的最佳方式是什么

Python 最佳实践-观看目录的最佳方式是什么,python,directory,watch,Python,Directory,Watch,我需要设置一个脚本,监视文件夹中某一类型的文件。我写了这个代码,但我想知道是否有更好的方法 import os def listAppleseedFiles(directory_path): directory_entities = os.listdir(directory_path) files = [] appleseed_files = [] for entity in directory_entities: file_path = o

我需要设置一个脚本,监视文件夹中某一类型的文件。我写了这个代码,但我想知道是否有更好的方法

import os


def listAppleseedFiles(directory_path):
    directory_entities =  os.listdir(directory_path)
    files = []
    appleseed_files = []
    for entity in directory_entities:
        file_path = os.path.join(directory_path, entity)
        if os.path.isfile(file_path):
            if os.path.splitext(file_path)[1] == '.appleseed':
                appleseed_files.append(file_path)

    return appleseed_files

while True:
    for file in listAppleseedFiles('/dir_name'):

        doSomething()
试试看!从他们的例子来看:

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

event_handler = LoggingEventHandler()
observer = Observer()
observer.schedule(event_handler, path='/dir_name', recursive=True)
observer.start()
try:
    while True:
        time.sleep(1)
except KeyboardInterrupt:
    observer.stop()
observer.join()

我成功地使用了PyPi中的
watcher
,它是API
ReadDirectoryChangesW
的包装器。下面是一个示例(Py3,但它在Py2上运行):

可能重复的
from watcher import *
import time

def callback(*stuff):
    if stuff[0] == FILE_ACTION_REMOVED:
        print(stuff[1],"deleted")
    else:
        print(stuff)

w = Watcher('C:\\' , callback)
w.flags = FILE_NOTIFY_CHANGE_FILE_NAME
w.start()

while True:  
    time.sleep(100)