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.
在 FreeBSD 系统上给定 /certain/path/ ,我希望 python 使用 kqueue 来检测是否在该路径下的任何位置创建或删除了任何文件。
我该怎么做?
您可以尝试看门狗包,它反过来在 BSD 上使用 kqueue(在 Linux 上使用 inotify 等)
根据 Python 的文档,kqueue/kevent 已经被支持(当然只在 BSD 上)“开箱即用”......