Best way to monitor file system changes in linux

前端 未结 3 1257
遇见更好的自我
遇见更好的自我 2020-12-08 07:50

I\'m looking at building a file system sync utility that monitors file system activity, but it appears that some of the file system monitoring features in the linux kernel a

3条回答
  •  不思量自难忘°
    2020-12-08 08:52

    You should use a library instead of inotify and friends - something like FAM or Gamin (it's the same API for both). This will make your program portable to other Unixes.

提交回复
热议问题