美文网首页
python shutil&压缩&解压$zipfile

python shutil&压缩&解压$zipfile

作者: 小草_fdba | 来源:发表于2018-06-18 18:34 被阅读0次

    shutil.copyfileobj(f1,f2,length=10)
    压缩
    import shutil
    shutil.make_archive('/tmp/hw', 'zip','../homeWork1.1',owner='may')

    压缩

    import zipfile
    z=zipfile.ZipFile('test.zip','w')
    z.write('airflow.py')
    z.write('shoppingCart.txt')
    z.close()
    

    解压缩

    import zipfile
    z=zipfile.ZipFile('test.zip','r')
    z.extractall()
    z.close()
    

    tar只打包不压缩

    import tarfile
    t=tarfile.open('test.tar','w')
    t.add("airflow.py")
    t.close()
    

    相关文章

      网友评论

          本文标题:python shutil&压缩&解压$zipfile

          本文链接:https://www.haomeiwen.com/subject/pkvneftx.html