os.listdir を使ってみる
Python
Published: 2019-09-16

やったこと

os.listdir を使ってみます。

確認環境

$ python
Python 3.6.2 |Anaconda custom (64-bit)| (default, Sep 21 2017, 18:29:43)
[GCC 4.2.1 Compatible Clang 4.0.1 (tags/RELEASE_401/final)] on darwin
Type "help", "copyright", "credits" or "license" for more information.

調査

準備

$ tree
.
├── aaa.txt
├── bbb.txt
├── ccc.txt
└── test.py

test.py

import os
i = os.listdir('./')
for target_file in i:
    print(target_file)

実行

出力結果

$ python test.py
ccc.txt
bbb.txt
test.py
aaa.txt