在 FreeBSD 上使用 python 和 kqueue 检测给定路径下的文件创建或删除
给定 FreeBSD 系统上的 /certain/path/ ,我希望 python 使用 kqueue 来检测该路径下的任何位置是否创建或删除了任何文件。
我该怎么做?
Given /certain/path/ on a FreeBSD system, I would like python to use kqueue to detect if any files are created or deleted anywhere under that path.
How would I do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
你可以尝试 watchdog 包,它在 BSD 上使用 kqueue (在 Linux 上使用 inotify 等) .)
You can try the watchdog package which in turn uses kqueue on BSD (and inotify on Linux, etc.)
根据Python的文档,已经支持kqueue/kevent(当然仅在BSD上) “开箱即用”...
Accordint to Python's documentation, kqueue/kevent are already supported (only on BSD, of course) "out of the box"...