Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我使用 pyinotify 来监控我的文件系统。问题是当我重命名一个目录并在重命名的目录中创建文件时,该事件是从原始路径引发的(由 引用event.name)。无法弄清楚什么是错的?add_watch初始化观察者时标志有问题吗?目前该标志设置为rec=True, auto_add=True.
event.name
add_watch
rec=True, auto_add=True
谢谢和最好的问候。
您需要将IN_MOVE_SELF事件添加到您的掩码中。
IN_MOVE_SELF
来源