Answers for "extract all zip in folder python"

1

python zip extract directory

import zipfile

archive = zipfile.ZipFile('archive.zip')

for file in archive.namelist():
    if file.startswith('foo/'):
        archive.extract(file, 'destination_path')
Posted by: Guest on September-20-2020

Python Answers by Framework

Browse Popular Code Answers by Language