您好,我正在使用 pywin32 跟踪服务器上的几个操作,目前我正在寻找跟踪服务器上每个用户打开的文件,我发现File_Info_Structure_3
,这里http://msdn.microsoft.com/en-us/library/windows/desktop /bb525375%28v=vs.85%29.aspx,但我在任何 pywin32 库中都找不到它,我签入了win32net
,win32file
但它不存在。有谁知道我如何导入和使用它。谢谢!
我得到了什么:
{'num_locks': 0, 'path_name': u'd:\\database\\agdata\\inx\\', 'user_name': u'finance', 'id': -1342162944, 'permissions': 1}
{'num_locks': 0, 'path_name': u'd:\\database\\dealdata\\', 'user_name': u'ntmount', 'id': 1879102464, 'permissions': 1}
{'num_locks': 0, 'path_name': u'd:\\database\\dealdata\\', 'user_name': u'ntmount', 'id': 536973312, 'permissions': 1}
{'num_locks': 0, 'path_name': u'd:\\database\\agdata\\inx\\', 'user_name': u'ntmount', 'id': -469590016, 'permissions': 1}
..........
我需要的:
{'num_locks': 0, 'path_name': u'd:\\database\\agdata\\inx\\', '10.2.2.3': u'finance', 'id': -1342162944, 'permissions': 1}
{'num_locks': 0, 'path_name': u'd:\\database\\dealdata\\', '10.5.3.23': u'ntmount', 'id': 1879102464, 'permissions': 1}
..........