您的位置:首页 > 科技 > 能源 > 东莞seo网络优化_wap网站制作教程_google搜索app下载_seo博客优化

东莞seo网络优化_wap网站制作教程_google搜索app下载_seo博客优化

2024/12/21 20:25:13 来源:https://blog.csdn.net/Brill_y/article/details/144243647  浏览:    关键词:东莞seo网络优化_wap网站制作教程_google搜索app下载_seo博客优化
东莞seo网络优化_wap网站制作教程_google搜索app下载_seo博客优化
  1. 下载SDK

https://www.voidtools.com/support/everything/sdk/

  1. 加载dll
ctypes.WinDLL(self.path)
  1. 调用接口
    具体接口使用方法官网都有,示例

https://www.voidtools.com/support/everything/sdk/python/

完整代码:

import ctypesclass EverythingSearch:path = r"D:\path\to\everything\dll\Everything32.dll"def __init__(self):self.dll = ctypes.WinDLL(self.path)def set_search(self, query):self.dll.Everything_SetSearchW(query)def execute_query(self):self.dll.Everything_QueryW(1)def get_results(self):query_results = []res = self.dll.Everything_GetNumResults()for i in range(res):filename = ctypes.create_unicode_buffer(260)self.dll.Everything_GetResultFullPathNameW(i, filename, 260)result = {'filename': ctypes.wstring_at(filename)}print(result)query_results.append(result)return query_resultsif __name__ == '__main__':es = EverythingSearch()es.set_search(r"*.suffix  D:\my\path\to\dir")  # 查找后缀为suffix的文件; 查找范围为D:\my\path\to\dires.execute_query()results = es.get_results()

版权声明:

本网仅为发布的内容提供存储空间,不对发表、转载的内容提供任何形式的保证。凡本网注明“来源:XXX网络”的作品,均转载自其它媒体,著作权归作者所有,商业转载请联系作者获得授权,非商业转载请注明出处。

我们尊重并感谢每一位作者,均已注明文章来源和作者。如因作品内容、版权或其它问题,请及时与我们联系,联系邮箱:809451989@qq.com,投稿邮箱:809451989@qq.com