問題タブ [python-watchdog]

For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.

0 投票する
1 に答える
241 参照

python - Watchdogでファイル名をパターンとして入力する方法

私はそのようなコードを持っているとしましょう

私の目標は、ユーザーpatternsが MyHandler クラスの変数に fname を入力することです。

上記のように何かを試しましたが、うまくいきませんでした。それは言いfname is not definedます。大丈夫、私patterns = [].append("*/"+fname)も成功しませんでした。

次に、init関数を作成しようとしました

のように渡されましたobserver.schedule(MyHandler(fname), path='.')

残念!どちらも成功しません。どうすればこれを達成できますか?

0 投票する
1 に答える
580 参照

python-3.x - combining tkinter and watchdog

I'm trying the following

  • Create a GUI with tkinter where the user will choose a directory to watch
  • Close the window
  • Pass the path to the directory to watchdog so it can watch for file changes

How does one go about combining both scripts into one app ?

This below post has a script which does nothing when I add a *.jpg file to my temp folder (osx). https://stackoverflow.com/a/41684432/11184726

Can someone point me towards a course or tutorial that will help me understand how to combine whats going on.

1. GUI :

2. Watchdog :