python3解压zip_Python 3.2 实现zip压缩与解压缩功能

#!/usr/bin/env python3

import os,zipfile

def Zip(target_dir):

target_file=os.path.basename(os.getcwd())+'.zip'

zip_opt=input("Will you zip all the files in this dir?(Choose 'n' you should add files by hand)y/n: ")

while True:

if zip_opt=='y':       #compress all the files in this dir

filenames=os.listdir(os.getcwd())    #get the file-list of this dir

zipfiles=zipfile.ZipFile(os.path.join(target_dir,target_file),'w',compression=zipfile.ZIP_DEFLATED)

for files in filenames:

zipfiles.write(files)

zipfiles.close()

print("Zip finished!")

break

elif zip_opt=='n':     #compress part of files of this dir

filenames=list(input("Please input the files' name you wanna zip:"))

zipfiles=zipfile.ZipFile(os.path.join(target_dir,target_file),'w',compression=zipfile.ZIP_DEFLATED)

for files in filenames:

zipfiles.write(files)

zipfiles.close()

print("Zip finished!")

break

else:

print("Please in put the character 'y' or 'n'")

zip_opt=input("Will you zip all the files in this dir?(Choose 'n' you should add files by hand)y/n: ")

def Unzip(target_dir):

target_name=input("Please input the file you wanna unzip:")

zipfiles=zipfile.ZipFile(target_name,'r')

zipfiles.extractall(os.path.join(target_dir,os.path.splitext(target_name)[0]))

zipfiles.close()

print("Unzip finished!")

def main():

opt=input("What are you gonna do?Zip choose 'y',unzip choose 'n'.y/n: ")

while True:

if opt=='y':  #compress files

zip_dir=input("Please input the absdir you wanna put the zip file in:")

Zip(zip_dir)

break

elif opt=='n':  #unzip files

unzip_dir=input("Please input the absdir you wanna put the zip file in(Nothing should be done if you wann unzip files in the current dir):")

if unzip_dir=='':

Unzip(os.getcwd())

else:

Unzip(unzip_dir)

break

else:

print("Please input the character 'y' or 'n'")

opt=input("What are you gonna do?Zip choose 'y',unzip choose 'n'.y/n: ")

if __name__=='__main__':

main()

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值