seb-m / pyinotify

Monitoring filesystems events with inotify on Linux.
http://github.com/seb-m/pyinotify/wiki
MIT License
2.29k stars 379 forks source link

Does it work on Mac? #170

Closed simontorres closed 3 years ago

simontorres commented 5 years ago

Sorry for the intrusion, I'm developing a software which is going to work on Linux but eventually it might be required to work on Mac (and be portable, and all that stuff).

The docs says it is made for Linux, does anyone have any information about getting it work on mac or any plans.

Thanks

asenov commented 3 years ago

This is a pure Linux feature https://en.wikipedia.org/wiki/Inotify Inotify (inode notify) is a Linux kernel subsystem that acts to extend filesystems to notice changes to the filesystem, and report those changes to applications. It replaces an earlier facility, dnotify, which had similar goals.

simontorres commented 3 years ago

Thanks!