다음과 같이 폴더와 파일을 생성해두었다. C:\test └ directory1 └ file4.txt └ file1.txt └ file2.txt └ file3.txt 1. os.listdir os.listdir(path) 특정 경로 내에 존재하는 폴더(디렉토리)와 파일 리스트를 검색 (1-depth) import os file_path = 'C:\\test' for file in os.listdir(file_path): print(file) 위와 같이 작성한 후 실행시키면 directory1 file1.txt file2.txt file3.txt 이렇게 출력된다. directory1 폴더 아래의 file4.txt 는 출력되지 않는다. 2. os.walk os.walk(path) 특정 경로 내에 존재하는 폴더..