Pythonで検索フォルダのサブフォルダのみ取得サンプル

環境
Python 3.9.7

書式
os.walk(top=’フォルダパス’):
引数topに対象のフォルダを指定します

使用例

import os

for root, dirs, files in os.walk(top='C:\data2'):
    for dir in dirs:
        dirPath = os.path.join(root, dir)
        print(f'dirPath = {dirPath}')

戻り値
root 検索パス
dirs ディレクト名のリスト
files ファイル目のリスト

実行結果
>python test.py
dirPath = C:\data2\11
dirPath = C:\data2\22

Python

Posted by arkgame