EASY7
[python] zip 파일 압축 풀기 본문
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/
'개발 공부 > Python' 카테고리의 다른 글
[python] 매개변수 받아오기 (0) | 2022.01.18 |
---|---|
[Python] 외부 파일 존재 여부 확인하기 (0) | 2022.01.18 |
[Python] 외부 파일 실행 (0) | 2022.01.18 |
[Qt5] Process finished with exit code -1073740791 (0xC0000409) 오류 (2) | 2021.12.25 |
[Pycharm] JSON string exceeds heap size limit (0) | 2021.09.13 |
Comments