-
[Python] iglob메소드와 재귀를 이용한 모든 하위 디렉토리 특정 확장자 파일 검색Python/Python Programming 2019. 10. 6. 15:34
path경로 기준 모든 하위 디렉토리에서 pdf파일만 검출하고 싶을 때,
from glob import iglob for file in iglob(r'path\**\*.pdf', recursive=True): print(file)
* python 3.5부터 ** 재귀 (recursive) 지원
'Python > Python Programming' 카테고리의 다른 글
[Python] multiplication table (파이썬 구구단) (0) 2019.10.10 [Python] multiplication table using itertools module. (itertools을 이용한 구구단) (0) 2019.10.10 [Python] comparing a file and b file (파일 비교 하기) (0) 2019.10.10 [Python] Difference between readline and readlines. (readline과 readlines의 차이) (0) 2019.10.08 [Python] 리스트 append 메소드와 insert 메소드 (0) 2019.10.02 [Python] 리스트의 값을 여러 변수에 다중할당 (0) 2019.10.02 [Python] itertools을 이용한 곱집합 만들기 (0) 2019.09.27 [Python] 디렉토리 / 파일 유효성 확인 (0) 2019.09.25