10

Pythonウォッチドッグを使用してディレクトリの変更を監視しようとしています。ただし、クイックスタートの例を実行しようとすると、次のようになります。

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

if __name__ == "__main__":
    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()

test.pyファイルを入れると、実行したターミナルウィンドウに何も表示されません。これが発生する原因は何ですか?どうすれば修正できますか?

4

1 に答える 1

14

githubで例を試してください:https ://github.com/gorakhargosh/watchdog

この例は、ドキュメントサイトにあるものとは対照的に機能しているようです。

于 2012-05-10T10:07:30.867 に答える