Python 3 - 具有有限递归深度的旅行目录树

Byt*_*der 3 python directory-structure os.walk subdirectory python-3.x

我需要递归地处理目录树中的所有文件,但深度有限.

这意味着例如在当前目录和前两个子目录级别中查找文件,但不是更进一步.在这种情况下,我必须处理./subdir1/subdir2/file,但不是./subdir1/subdir2/subdir3/file.

我如何在Python 3中做到最好?

目前我os.walk用来处理循环中无限深度的所有文件,如下所示:

for root, dirnames, filenames in os.walk(args.directory):
    for filename in filenames:
        path = os.path.join(root, filename)
        # do something with that file...
Run Code Online (Sandbox Code Playgroud)

我可以想到一种计算目录separators(/)的方法root来确定当前文件的层次级别,以及break当该级别超过所需最大值时的循环.

我认为这种方法可能不安全,而且当需要忽略大量子目录时,效率可能非常低.这里的最佳方法是什么?

Art*_*rty 10

从 python 3.5 开始,os.scandir 用于 os.walk 而不是 os.listdir。它的工作速度快了很多倍。我稍微更正了@kevin 样本。

import os

def walk(top, maxdepth):
    dirs, nondirs = [], []
    for entry in os.scandir(top):
        (dirs if entry.is_dir() else nondirs).append(entry.path)
    yield top, dirs, nondirs
    if maxdepth > 1:
        for path in dirs:
            for x in walk(path, maxdepth-1):
                yield x

for x in walk(".", 2):
    print(x)
Run Code Online (Sandbox Code Playgroud)

  • walkMaxDepth 未定义。应该步行吗? (2认同)
  • 有趣的是,两年内没有人注意到这个错误。我从两个不同的地方获取了代码,复制粘贴导致了不同的名称。这是递归,而不是 walkMaxDepth,应该是主板函数 walk 的名称。我已经在代码中修复了这个问题。感谢您关注此事。当完成的代码片段不起作用时,我自己也很痛苦。 (2认同)

Kev*_*vin 8

我认为最简单和最稳定的方法是直接复制os.walk 源代码的功能并插入自己的深度控制参数.

import os
import os.path as path

def walk(top, topdown=True, onerror=None, followlinks=False, maxdepth=None):
    islink, join, isdir = path.islink, path.join, path.isdir

    try:
        names = os.listdir(top)
    except OSError, err:
        if onerror is not None:
            onerror(err)
        return

    dirs, nondirs = [], []
    for name in names:
        if isdir(join(top, name)):
            dirs.append(name)
        else:
            nondirs.append(name)

    if topdown:
        yield top, dirs, nondirs

    if maxdepth is None or maxdepth > 1:
        for name in dirs:
            new_path = join(top, name)
            if followlinks or not islink(new_path):
                for x in walk(new_path, topdown, onerror, followlinks, None if maxdepth is None else maxdepth-1):
                    yield x
    if not topdown:
        yield top, dirs, nondirs

for root, dirnames, filenames in walk(args.directory, maxdepth=2):
    #...
Run Code Online (Sandbox Code Playgroud)

如果你对所有这些可选参数不感兴趣,你可以大大减少这个功能:

import os

def walk(top, maxdepth):
    dirs, nondirs = [], []
    for name in os.listdir(top):
        (dirs if os.path.isdir(os.path.join(top, name)) else nondirs).append(name)
    yield top, dirs, nondirs
    if maxdepth > 1:
        for name in dirs:
            for x in walk(os.path.join(top, name), maxdepth-1):
                yield x

for x in walk(".", 2):
    print(x)
Run Code Online (Sandbox Code Playgroud)