是否有类似 Perl 的 Win32::FileNotify for Linux 或 OS X 的东西?
我一直在 Windows 上使用 Win32::FileNotify,我很想知道如果 Linux 和 OS X 上有类似的东西。我还没有能够使用 Google 找到这样的模块。这里有人知道这样的事情吗?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
File::ChangeNotify 听起来像是一种跨平台的方法。
File::ChangeNotify sounds like a cross-platform way to do this.
对于可以运行 famd 的系统(Irix、Linux、BSD、大多数 Unices )有 SGI::FAM 和 Sys::Gamin,两者都不是直接从 CPAN 或 tarball 构建的,但是一旦你让它们工作就可以很好地工作。
For systems where famd can run (Irix, Linux, BSDs, most Unices) there is SGI::FAM and Sys::Gamin, both of which do not build straight out of CPAN or tarball, but do work well once you get them working.
虽然我不知道具体的跨平台解决方案,但 Linux 上有 inotify(在 2.6.13 版本的现代内核上也很好),并且来自 Inotify 来自 CPAN 的模块。至于 OS X,显然有 kqueue 系统调用,但我没有使用它的经验。
While I don't know of a specific cross platform solution there is inotify on linux (well on modern kernels from 2.6.13) and from the Inotify module from CPAN. As for OS X, there is apparently the
kqueue
syscall but I have no experience of using it.