1. ホーム
  2. python

[解決済み] Pythonでディレクトリツリーのリストアップ

2022-03-17 23:11:20

質問

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')