extract zip file python
import zipfile
with zipfile.ZipFile(path_to_zip_file, 'r') as zip_ref:
zip_ref.extractall(directory_to_extract_to)
extract zip file python
import zipfile
with zipfile.ZipFile(path_to_zip_file, 'r') as zip_ref:
zip_ref.extractall(directory_to_extract_to)
how to save unzipped files 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()
how to extract zip file using python
ZipFile.extractall(path=None, members=None, pwd=None)
extracting zip files python
import os
import optparse
import zipfile
def get_arguments():
parser = optparse.OptionParser()
parser.add_option("--src","--source",dest="paths", help="Removing file with extension .SRT and .VTT")
(options,arguments)=parser.parse_args()
if not options.paths:
parser.error("[-] Please specify source, use --help for more info.")
return options
def Source_folder(folder_path):
print('[+] Extracting zip file')
for path, dir_list, file_list in os.walk(folder_path):
try:
for file_name in file_list:
if file_name.endswith(".zip"):
abs_file_path = os.path.join(path, file_name)
parent_path = os.path.split(abs_file_path)[0]
output_folder_name = os.path.splitext(abs_file_path)[0]
output_path = os.path.join(parent_path, output_folder_name)
zip_obj = zipfile.ZipFile(abs_file_path, 'r')
zip_obj.extractall(output_path)
zip_obj.close()
except FileNotFoundError:
print('Error', file_name)
options = get_arguments()
Source_folder(options.paths)
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us