본문 바로가기
인공지능/Deep Learning

[Deep Learning] 파이썬으로 압축 파일 풀기 zipfile

by coding_su 2022. 12. 30.

📝파이썬으로 압축 파일 푸는 방법

# 라이브러리 임포트
import zipfile

# 변수에 ZipFile이 있는 경로를 가져와서 저장한다
file = zipfile.ZipFile('/tmp/horse-or-human.zip')

# file.extractall에 압축을 풀 폴더 경로를 입력한다(새로운 파일이름을 적으면 파일 생성됨)
file.extractall('/tmp/horse-or-human')

압축을 푼 각 폴더에 저장되어 있는 사진 파일들 확인하기

import os

# dir 디렉토리에 있는 것을 리스트로 전부 가져오기(파일명 확인)
os.listdir(train_horse_dir)

# 디렉토리에 저장된 파일의 갯수 확인
len(os.listdir(train_horse_dir))

댓글