Using python to compress all files in a folder as zip files

Source: Internet
Author: User
This article mainly introduces how to compress all files in a python folder as zip files, which can be used to compress simple zip files, for more information, see the example in this article. Share it with you for your reference. The details are as follows:

This code can be used to package your own folder as zip. I will use this code to back up

Import zipfilez = zipfile.ZipFile('my-archive.zip ', 'W', zipfile. ZIP_DEFLATED) startdir = "/home/johnf" for dirpath, dirnames, filenames in OS. walk (startdir): for filename in filenames: z. write (OS. path. join (dirpath, filename) z. close ()

I hope this article will help you with Python programming.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.