搜索路径

搜索路径,第1张

概述搜索路径

下面是内存溢出 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)为你收集整理的全部代码内容,希望文章能够帮你解决所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

总结

以上是内存溢出为你收集整理的搜索路径全部内容,希望文章能够帮你解决搜索路径所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/1199333.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-04
下一篇 2022-06-04

发表评论

登录后才能评论

评论列表(0条)

保存