Hi all,
I'm trying to add a gio monitor on my application as below:
import gio
self.gfile = gio.File(os.path.expanduser("~/"))
self.monitor = self.gfile.monitor_directory(gio.FILE_MONITOR_NONE, None)
self.monitor.connect('changed', self.on_monitor_event)
but only changements into the home directory are handled, not in
subdirectories.
Is this a normal behavior?