프로그래밍 언어/Python

Python에서 파일 압축 해제 하는 방법

Rateye 2021. 11. 5. 10:49
728x90
반응형
질문 : Python에서 파일 압축 해제

zipfile 문서를 읽었 지만 파일 압축 을 푸는 방법을 이해할 수 없었고 파일을 압축하는 방법 만 이해할 수있었습니다. zip 파일의 모든 내용을 동일한 디렉토리에 어떻게 압축 해제합니까?

답변

import zipfile
with zipfile.ZipFile(path_to_zip_file, 'r') as zip_ref:
    zip_ref.extractall(directory_to_extract_to)

그게 다야!

출처 : https://stackoverflow.com/questions/3451111/unzipping-files-in-python
728x90
반응형