2018년 9월 25일 Python 381 comments directory list, Python
파이썬에서 특정 디렉토리의 파일 이름을 불러오는 코드 스니펫을 정리해둔다.
from os import listdir from os.path import isfile, join def listDir(mypath): onlyfiles = [f for f in listdir(mypath) if isfile(join(mypath, f))] return onlyfiles