Python使您可以快速创建zip或者tar压缩文档。
以下命令将压缩整个目录
shutil.make_archive(output_filename, 'zip', dir_name)
以下命令使您可以控制要压缩的文件
ZipFile.write(filename)
以下是在Python中创建Zip文件的步骤
步骤1)要使用Python创建压缩文件,请确保您的导入语句正确,并且顺序正确。 导入语句是 from shutil import make_archive
代码说明
步骤2)
您可以右键单击该文件并选择”show in explorer”
它将在文件浏览器显示您的压缩文件,如下所示。
步骤3)当您双击文件时,您将看到列表中的所有文件。
步骤4)我们可以定义要包含在压缩存档中的特定文件,可以更好地控制如何进行压缩的过程。 修改代码如下,我们将在压缩存档中只包含这两个文件“ guru.txt”和“ guru.txt.bak”。
代码说明
注意:在这里,由于使用了“ With”作用域锁,因此我们没有给出任何命令来“close”文件,例如“ newzip.close”,当程序超出此作用域时,该文件将被清理并自动关闭。
步骤5)当您->右键单击文件(testguru.zip)并->选择操作系统(Windows资源管理器)时,它将在文件夹中显示存档文件,如下所示。
当您双击文件“ testguru.zip”时,它将打开另一个窗口,这将显示其中包含的文件。
这是完整的代码
Python 2 Example
import os
import shutil
from zipfile import ZipFile
from os import path
from shutil import make_archive
def main():
# Check if file exists
if path.exists("guru.txt"):
# get the path to the file in the current directory
src = path.realpath("guru.txt");
# rename the original file
os.rename("career.guru.txt","guru.txt")
# now put things into a ZIP archive
root_dir,tail = path.split(src)
shutil.make_archive("guru archive", "zip", root_dir)
# more fine-grained control over ZIP files
with ZipFile("testguru.zip","w") as newzip:
newzip.write("guru.txt")
newzip.write("guru.txt.bak")
if __name__== "__main__":
main()
Python 3 Example
import os
import shutil
from zipfile import ZipFile
from os import path
from shutil import make_archive
# Check if file exists
if path.exists("guru.txt"):
# get the path to the file in the current directory
src = path.realpath("guru.txt");
# rename the original file
os.rename("career.guru.txt","guru.txt")
# now put things into a ZIP archive
root_dir,tail = path.split(src)
shutil.make_archive("guru archive","zip",root_dir)
# more fine-grained control over ZIP files
with ZipFile("testguru.zip", "w") as newzip:
newzip.write("guru.txt")
newzip.write("guru.txt.bak")