「Python」os.path.join関数でファイルパスを取得するサンプル

2020年10月14日

説明
os.path.join パスを結合します。
サンプルコード

import os
for current_dir, dirs, files in os.walk('.'):
    for filename in files:
        print(os.path.join(current_dir, filename))

 

Python

Posted by arkgame