“in Python entpacken” Code-Antworten

So entpacken Sie Dateien mit dem Zipfile -Modul Python

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

in Python entpacken

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

So speichern Sie unzippierte Dateien in 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 entpackt einen Reißverschluss

# 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

So extrahieren Sie die Zip -Datei mit Python

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

Ähnliche Antworten wie “in Python entpacken”

Fragen ähnlich wie “in Python entpacken”

Weitere verwandte Antworten zu “in Python entpacken” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen