mirror of
https://github.com/wahyd4/crawlab.git
synced 2026-08-09 13:16:10 +10:00
24 lines
727 B
Python
24 lines
727 B
Python
import os, zipfile
|
|
|
|
|
|
# 打包目录为zip文件(未压缩)
|
|
def zip_file(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()
|
|
|
|
|
|
def unzip_file(zip_src, dst_dir):
|
|
r = zipfile.is_zipfile(zip_src)
|
|
if r:
|
|
fz = zipfile.ZipFile(zip_src, 'r')
|
|
for file in fz.namelist():
|
|
fz.extract(file, dst_dir)
|
|
else:
|
|
print('This is not zip')
|