1) 폴더 안에 있는 csv 파일 목록 확인
import os folders = os.listdir('폴더경로')
2) 현재 작업위치(working directory) 변경
os.chdir('폴더경로')
"read_csv()"를 이용해 파일을 읽을 때 files라는 변수로 접근하게 되면, 파일의 주소는 포함하지 않은채 파일 명만 들어가기 때문에 해당 파일이 있는 폴더 외 공간에서 작업을 하게 될 경우 파일을 찾을 수 없다는 에러가 발생한다.
따라서 해당 파일이 있는 곳으로 working directory를 이동하여 파일을 read 해준다.
3) 데이터프레임 생성후 모든 데이터프레임 합치기
df_month4 = pd.DataFrame() for files in forders: df = pd.read_csv(files, encoding='cp949') df_month4 = pd.concat([df_month4, df])