如何监控文件的打开和关闭?

如何监控文件的打开和关闭?

我正在写一个人工智能私人助理。该软件的一部分是监控守护程序。监视用户活动窗口的小进程。我正在使用 python(使用 libwnck 和 psutils 来获取活动窗口上的信息)。我希望显示器做的一件事是跟踪听众经常听的音乐。

我是否可以“监视”文件的打开和关闭? psutils.Process 有一个返回打开文件列表的函数,但我需要某种方法来通知它检查它。目前它仅在窗口切换或窗口打开或关闭时检查过程数据。

答案1

您可以使用子系统监视文件的打开/关闭inotifypyinotify是该子系统的一个接口。

请注意,如果您有很多事件要进行 inotify,则可以删除一些事件,但它适用于大多数情况(特别是用户交互将驱动文件打开/关闭的情况)。

pyinotify 可通过 easy_install/pip 和 athttps://github.com/seb-m/pyinotify/wiki

MWE(基于http://www.saltycrane.com/blog/2010/04/monitoring-filesystem-python-and-pyinotify/):

#!/usr/bin/env python
import pyinotify

class MyEventHandler(pyinotify.ProcessEvent):
    def process_IN_CLOSE_NOWRITE(self, event):
        print "File closed:", event.pathname

    def process_IN_OPEN(self, event):
        print "File opened::", event.pathname

def main():
    # Watch manager (stores watches, you can add multiple dirs)
    wm = pyinotify.WatchManager()
    # User's music is in /tmp/music, watch recursively
    wm.add_watch('/tmp/music', pyinotify.ALL_EVENTS, rec=True)

    # Previously defined event handler class
    eh = MyEventHandler()

    # Register the event handler with the notifier and listen for events
    notifier = pyinotify.Notifier(wm, eh)
    notifier.loop()

if __name__ == '__main__':
    main()

这是相当低级的信息 - 您可能会惊讶于您的程序使用这些低级打开/关闭事件的频率。您始终可以过滤和合并事件(例如,假设在特定时间段内收到的同一文件的事件对应于相同的访问)。

相关内容