下面是内存溢出 jb51.cc 通过网络收集整理的代码片段。
内存溢出小编现在分享给大家,也给大家做个参考。
# enCoding: utf-8import osclass SearchPath(object): @classmethod def get(cls,search_path,key_word,search_type='file'): '''指定路径搜索,多个关键字用List''' if not os.path.exists(search_path): print 'no this path' return [] type_dict = {'file': 2,'dir': 1} result = [] for info in os.walk(search_path): for name in info[type_dict[search_type]]: if isinstance(key_word,str): if key_word in name: result.append(info[0] + '/' + name) if isinstance(key_word,List): if all([n in name for n in key_word]): result.append(info[0] + '/' + name) return result if __name__ == '__main__': # 在/Users/jimi/desktop/books路径下搜索名字中包含’dive‘的文件 print SearchPath.get('/Users/jimi/desktop/books','dive') # 在/Users/jimi/desktop/books路径下搜索名字中包含’pl‘和‘al’的文件 print SearchPath.get('/Users/jimi/desktop/books',['pl','al']) # 搜索文件夹 SearchPath.get('/Users/jimi/desktop/books','stage',search_type='dir')
以上是内存溢出(jb51.cc)为你收集整理的全部代码内容,希望文章能够帮你解决所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
总结以上是内存溢出为你收集整理的搜索路径全部内容,希望文章能够帮你解决搜索路径所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)