非递归 os.walk()

发布于 2024-10-01 00:31:19 字数 134 浏览 2 评论 0原文

我正在寻找一种方法来执行非递归 os.walk() 步行,就像 os.listdir() 的工作原理一样。但我需要以与 os.walk() 返回相同的方式返回。有什么想法吗?

先感谢您。

I'm looking for a way to do a non-recursive os.walk() walk, just like os.listdir() works. But I need to return in the same way the os.walk() returns. Any idea?

Thank you in advance.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(6

小红帽 2024-10-08 00:31:19

在 for 循环的文件名后添加 break

for root, dirs, filenames in os.walk(workdir):
    for fileName in filenames:
        print (fileName)
    break   #prevent descending into subfolders

这有效是因为(默认情况下)os.walk 首先列出请求文件夹中的文件,然后进入子文件夹。

Add a break after the filenames for loop:

for root, dirs, filenames in os.walk(workdir):
    for fileName in filenames:
        print (fileName)
    break   #prevent descending into subfolders

This works because (by default) os.walk first lists the files in the requested folder and then goes into subfolders.

南风起 2024-10-08 00:31:19
next(os.walk(...))
next(os.walk(...))
木槿暧夏七纪年 2024-10-08 00:31:19

我的参数化解决方案是这样的:

for root, dirs, files in os.walk(path):  
    if not recursive:  
        while len(dirs) > 0:  
            dirs.pop()  

    //some fancy code here using generated list

编辑:修复,if/while 问题。谢谢,@Dirk van Oosterbosch:}

My a bit more parametrised solution would be this:

for root, dirs, files in os.walk(path):  
    if not recursive:  
        while len(dirs) > 0:  
            dirs.pop()  

    //some fancy code here using generated list

Edit: fixes, if/while issue. Thanks, @Dirk van Oosterbosch :}

风吹短裙飘 2024-10-08 00:31:19

那么卡米科洛的意思更符合这一点:

for str_dirname, lst_subdirs, lst_files in os.walk(str_path):
    if not bol_recursive:
          while len(lst_subdirs) > 0:
              lst_subdirs.pop()

Well what Kamiccolo meant was more in line with this:

for str_dirname, lst_subdirs, lst_files in os.walk(str_path):
    if not bol_recursive:
          while len(lst_subdirs) > 0:
              lst_subdirs.pop()
悟红尘 2024-10-08 00:31:19

清空目录列表

for r, dirs, f in os.walk('/tmp/d'):
    del dirs[:]
    print(f)

Empty the directories list

for r, dirs, f in os.walk('/tmp/d'):
    del dirs[:]
    print(f)
那些过往 2024-10-08 00:31:19

灵活的文件计数功能:

您可以设置递归搜索以及要查找的类型。默认参数:file_types=("", ) 查找任何文件。参数 file_types=(".csv",".txt") 将搜索 csv 和 txt 文件。

from os import walk as os_walk

def count_files(path, recurse=True, file_types = ("",)):
    file_count = 0
    iterator = os_walk(path) if recurse else ((next(os_walk(path))), )
    for _, _, file_names in iterator:
        for file_name in file_names:
            file_count += 1 if file_name.endswith(file_types) else 0
    return file_count

Flexible Function for counting files:

You can set recursive searching and what types you want to look for. The default argument: file_types=("", ) looks for any file. The argument file_types=(".csv",".txt") would search for csv and txt files.

from os import walk as os_walk

def count_files(path, recurse=True, file_types = ("",)):
    file_count = 0
    iterator = os_walk(path) if recurse else ((next(os_walk(path))), )
    for _, _, file_names in iterator:
        for file_name in file_names:
            file_count += 1 if file_name.endswith(file_types) else 0
    return file_count
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文