EASY7

[python] zip 파일 압축 풀기 본문

개발 공부/Python

[python] zip 파일 압축 풀기

E.asiest 2022. 1. 18. 23:35

zip 파일 압축 풀기

test.zip 중 notepad.exe를 압축 해제해서 C:\Users\Document 폴더에 풀기

압축 해제 경로 지정하지 않으면 실행한 python과 같은 경로에 압축 해제된다.

import zipfile

my_zip = zipfile.ZipFile("C:\\windows\\test.zip")
my_zip.extract('notepad.exe', 'C:\\Users\\Document\\')

 

출처 : https://yganalyst.github.io/data_handling/memo_2/

 

 

 

 

 

Comments