我阅读了示例,关于使用 pywin32 读取 Windows 事件日志:
现在我想知道我是否可以采取下一步:
一旦 Windows 事件日志到达(可能是其他应用程序设置的日志),触发一个 python 函数(我的代码),这样我就可以实时监控事件。
我一整天都在胡思乱想,找不到好的解决办法。这是我的测试代码:
import win32evtlog
import win32event
def function_wait():
#i check the new windows log is set , but this function wasn't fired
print 'a new event log.'
file_open_hand = win32evtlog.OpenEventLog('my-pc','Application')
# i thought it's definitly wrong below, but i have no idear about the 4th parameter!
hEvent = win32event.CreateEvent (None, 1, 0, 'function_wait')
win32evtlog.NotifyChangeEventLog(file_open_hand,hEvent)
inputx = raw_input("wait for event log fire...")