编程语言
首页 > 编程语言> > Python中的目录树列表

Python中的目录树列表

作者:互联网

如何获取Python中给定目录中所有文件(和目录)的列表?

解决方法:

这是遍历目录树中每个文件和目录的方法:

import os

for dirname, dirnames, filenames in os.walk('.'):
    # print path to all subdirectories first.
    for subdirname in dirnames:
        print(os.path.join(dirname, subdirname))

    # print path to all filenames.
    for filename in filenames:
        print(os.path.join(dirname, filename))

    # Advanced usage:
    # editing the 'dirnames' list will stop os.walk() from recursing into there.
    if '.git' in dirnames:
        # don't go into any .git directories.
        dirnames.remove('.git')

标签:subdirectory,python,file,directory,directory-tree
来源: https://codeday.me/bug/20190911/1804342.html