找到pywin32库组件python

时间:2012-09-04 15:17:54

标签: python windows pywin32

您好我正在使用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}
..........

1 个答案:

答案 0 :(得分:0)

FILE_INFO_ *结构未转换为python等价物。它们将被退回或使用,例如由win32net.NetFileEnum作为字典。