컴퓨터/Python

python 현재 디렉토리 dir

풍경소리^^ 2020. 10. 10. 08:02

import os

dir=os.listdir(os.getcwd())

for i in dir:

    print(i)