-
Notifications
You must be signed in to change notification settings - Fork 18
Open
Description
When working with this library on macOS and Linux, I'm seeing a difference in behavior between the two regarding recursive monitoring of directories.
Given the scenarios:
- watch a directory, add a file to directory
- watch a directory with a subdirectory, add a file to subdirectory
- watch a directory, add a subdirectory, add a file
| 1 | 2 | 3 | |
|---|---|---|---|
| macOS | ✅ | ✅ | ✅ |
| Linux | ✅ | ❌ | ❌ |
The reason for this difference is because the inotify C library does not automatically support recursion.
Inotify monitoring of directories is not recursive: to monitor subdirectories
under a directory, additional watches must be created. This can take a significant
amount time for large directory trees.
I'm not sure which is behaving as intended for the scope of this project, but would expect the behavior to be the same.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels