tar压缩文件

来源:互联网 发布:ps4能不能安装windows 编辑:程序博客网 时间:2024/05/21 09:31
#!/usr/bin/env python3   
import os,zipfile,tarfile


def Zip(target_dir):   
    os.chdir(target_dir)
    target_file=raw_input('please input your compress file name: ')
    tar = tarfile.open(target_file, "w")
    while True:
        zip_opt=raw_input("compress all the files in this dir choice y,add files by hand choice n (y/n): ")
        filenames=[]
        if zip_opt=='y':    
            filenames=os.listdir(os.getcwd())
            #tar = tarfile.open(target_file, "w")
            for name in filenames:
                tar.add(name)
            tar.close()
            print("compress finished!")   
            break
        
        elif zip_opt=='n':
            while True:
                aaa=raw_input('input (e) to exit,or input the file name you want compressing : ')
                if aaa=='e':
                    break
                else:
                    filenames.append(aaa)
                    print filenames
                
            for name in filenames:
                tar.add(name)
            tar.close()
            print("compress 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=raw_input("Please input the filename you want uncompress :")
    os.chdir(target_dir)
    tar = tarfile.open(target_name)
    tar.extractall(os.path.join(target_dir,   os.path.splitext(os.path.splitext(target_name)[0])[0]     ))
    tar.close()
    print("Unzip finished!")
   
def main():   
    opt=raw_input("welcome! compress choose 'y',uncompress choose 'n'.y/n: ")   
    while True:   
        if opt=='y':  
            zip_dir=raw_input("Please input the absdir you want put the compress file in:")   
            Zip(zip_dir)   
            break  
        elif opt=='n': 
            unzip_dir=raw_input("Please input the absdir you want put the compress file in or nothing is in the current dir):")
            print unzip_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
原创粉丝点击