本文實例講述了Python打包文件夾的方法。分享給你們供你們參考,具體以下:算法
1、zip編程
1
2
3
4
5
6
7
8
9
10
11
|
import
os, zipfile
#打包目錄爲zip文件(未壓縮)
def
make_zip(source_dir, output_filename):
zipf
=
zipfile.ZipFile(output_filename,
'w'
)
pre_len
=
len
(os.path.dirname(source_dir))
for
parent, dirnames, filenames
in
os.walk(source_dir):
for
filename
in
filenames:
pathfile
=
os.path.join(parent, filename)
arcname
=
pathfile[pre_len:].strip(os.path.sep)
#相對路徑
zipf.write(pathfile, arcname)
zipf.close()
|
2、tar/tar.gz數據結構
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
import
os, tarfile
#一次性打包整個根目錄。空子目錄會被打包。
#若是隻打包不壓縮,將"w:gz"參數改成"w:"或"w"便可。
def
make_targz(output_filename, source_dir):
with tarfile.
open
(output_filename,
"w:gz"
) as tar:
tar.add(source_dir, arcname
=
os.path.basename(source_dir))
#逐個添加文件打包,未打包空子目錄。可過濾文件。
#若是隻打包不壓縮,將"w:gz"參數改成"w:"或"w"便可。
def
make_targz_one_by_one(output_filename, source_dir):
tar
=
tarfile.
open
(output_filename,
"w:gz"
)
for
root,
dir
,files
in
os.walk(source_dir):
for
file
in
files:
pathfile
=
os.path.join(root,
file
)
tar.add(pathfile)
tar.close()
|
更多關於Python相關內容感興趣的讀者可查看本站專題:《Python文件與目錄操做技巧彙總》、《Python文本文件操做技巧彙總》、《Python URL操做技巧總結》、《Python圖片操做技巧總結》、《Python數據結構與算法教程》、《Python Socket編程技巧總結》、《Python函數使用技巧總結》、《Python字符串操做技巧彙總》及《Python入門與進階經典教程》函數