감동, 마음이 움직이는 것

[python] folder안의 file이름 읽어들이기 본문

Tips (Utility, Computer Language, and etc.)

[python] folder안의 file이름 읽어들이기

Struggler J. 2018. 1. 5. 02:47

import fnmatch 

flist = fnmatch.filter(os.listdir(dirpath), name)

dirpath에 원하는 폴더의 path를 지정해주면 된다.