“zip -файл извлечения питона” Ответ

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

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

Извлечь питон zip file

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

Как сохранить незамеченные файлы в 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

from zipfile import ZipFile
import zipfile

with ZipFile('test.zip') as myzip:
    with myzip.open('Roughwork/textfile.text') as myfile:
        print(myfile.readlines())Copy Code
Pythonist

zip -файл извлечения питона

from zipfile import ZipFile
import zipfile

myzip = ZipFile('test.zip') 
myzip.extract(member='Roughwork/pretify.html') 
Pythonist

Ответы похожие на “zip -файл извлечения питона”

Вопросы похожие на “zip -файл извлечения питона”

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

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

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