728x90
os.walk()
포스트 난이도: HOO_Junior
# os.walk() Example
import os
for root, dirs, files in os.walk(".", topdown=True):
for name in files:
print(os.path.join(root, name))
for name in dirs:
print(os.path.join(root, name))
# Explanation
import os는 os.path를 사용하기 위해서 import 해주는 라이브러리이다.
os.walk의 특성상 트리 방식으로 디렉토리 안의 파일 이름을 산출해내기 때문에 import os가 필요하다.
os.walk 작성 방법은 아래와 같다.
os.walk(top[, topdown=True[, onerror=None[, followlinks=False]]])
728x90
'Python > Python Examples' 카테고리의 다른 글
[Python Examples] def Examples (0) | 2022.08.06 |
---|---|
[Python Examples] if문 예제 코드(Example of if statement) (0) | 2022.07.30 |
[Python Examples] sorted(), sorted(x, reverse) (0) | 2022.03.17 |
[Python Examples] divmod()을 사용하여 몫, 나머지 구하기 (0) | 2022.03.15 |
[Python Example Codes] Matplotlib: Horizontal Bar Chart(수평 막대 그래프) 데이터 시각화 #01 (0) | 2021.12.16 |
댓글