“Unzip -файл Python” Ответ

Как разкапливать файлы с помощью модуля Zipfile Python

import zipfile
with zipfile.ZipFile("file.zip","r") as zip_ref:
    zip_ref.extractall("targetdir")
Muddy Millipede

Unzip -файл Python

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

unzip_data python

import zipfile

path = '/path_to_your/zip_file'
zip_ref = zipfile.ZipFile(path,'r')
zip_ref.extractall(directory_to_extract) # or leave blank to extract to current directory
The Legendary Ctrl+C

Как сохранить незамеченные файлы в Python


import zipfile
def un_zipFiles(path):
    files=os.listdir(path)
    for file in files:
        if file.endswith('.zip'):
            filePath=path+'/'+file
            zip_file = zipfile.ZipFile(filePath)
            for names in zip_file.namelist():
                zip_file.extract(names,path)
            zip_file.close() 
Enthusiastic Eland

Python распаковывать молнию

# app.py

from zipfile import ZipFile

with ZipFile('Mail3.zip', 'r') as zipObj:
   # Extract all the contents of zip file in different directory
   zipObj.extractall('temp')
   print('File is unzipped in temp folder')
Delightful Dugong

Как извлечь zip -файл с помощью Python

ZipFile.extractall(path=None, members=None, pwd=None)
Xerothermic Xenomorph

Ответы похожие на “Unzip -файл Python”

Вопросы похожие на “Unzip -файл Python”

Больше похожих ответов на “Unzip -файл Python” по Python

Смотреть популярные ответы по языку

Смотреть другие языки программирования