gpt4 book ai didi

python遍历文件夹,指定遍历深度与忽略目录的方法

转载 作者:qq735679552 更新时间:2022-09-27 22:32:09 28 4
gpt4 key购买 nike

CFSDN坚持开源创造价值,我们致力于搭建一个资源共享平台,让每一个IT人在这里找到属于你的精彩世界.

这篇CFSDN的博客文章python遍历文件夹,指定遍历深度与忽略目录的方法由作者收集整理,如果你对这篇文章有兴趣,记得点赞哟.

背景 。

需要在文件夹中搜索某一文件,找到后返回此文件所在目录。用最常规的os.listdir()方式实现了一版,但执行时报错:递归超过最大深度。于是自己添加了点功能,之所有写此函数是为了让它适应不同的项目,因为有项目要找的文件在第一层,有的在第二层.

函数 。

功能:在文件夹中查找某一文件,找到后返回True与文件所在目录路径.

参数:filepath, 要查找的目录 。

参数:filename, 要查找的文件 。

扩展1:find_depth, 查找时指定递归深度; 。

扩展2:ignore_path, 查找时忽略某些目录; 。

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#!/usr/bin/env python
# coding=utf-8
import os
# from fabric.colors import *
 
def find_file( self , filepath, filename, find_depth = 1 , ignore_path = [ '.git' , 'node_modules' ]):
   """查找文件"""
   # print blue("当前查找目录:{},递归层级:{}".format(filepath, find_depth))
   # 递归深度控制
   find_depth - = 1
   for file_ in os.listdir(filepath):
     # print cyan("file: {}".format(file_))
     if isfile(join(filepath, file_)):
       # print "当前文件:{}".format(file_)
       if file_ = = filename:
         return True , filepath
     elif find_depth < = 0 : # 递归深度控制, 为0时退出
       # print yellow("超出递归深度,忽略!")
       continue
     elif file_ in ignore_path: # 忽略指定目录
       # print yellow("此目录在忽略列表中,跳过!")
       continue
     else :
       result, abs_path = self .find_file(filepath = join(filepath, file_),
                        filename = filename,
                        find_depth = find_depth)
       if result:
         print green( "找到{}文件,所在路径{}" . format (filename, abs_path))
         return result, abs_path
   return False , filepath
 
result, filepath = find_build(filepath = "/data/deploy/jenkins/data/jobs/sit-zjims-mobile/workspace/" , filename = "gulpfile.js" , find_depth = 3 )

以上这篇python遍历文件夹,指定遍历深度与忽略目录的方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持我.

原文链接:https://blog.csdn.net/yu12377/article/details/77965905 。

最后此篇关于python遍历文件夹,指定遍历深度与忽略目录的方法的文章就讲到这里了,如果你想了解更多关于python遍历文件夹,指定遍历深度与忽略目录的方法的内容请搜索CFSDN的文章或继续浏览相关文章,希望大家以后支持我的博客! 。

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com