summaryrefslogtreecommitdiff
path: root/Lib/shutil.py
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2015-09-08 05:53:42 +0300
committerSerhiy Storchaka <storchaka@gmail.com>2015-09-08 05:53:42 +0300
commit899f32fe1ef9882a4dedf16f0d2721a3e6beb8c6 (patch)
tree94f4dd1d723cd7163d27f75522438df742917f1a /Lib/shutil.py
parent90fd895197f485583af630ef2e34cbdea298abf7 (diff)
parentd941d7a586c8ea2f8253d7b238b3a56522b77a83 (diff)
downloadcpython-git-899f32fe1ef9882a4dedf16f0d2721a3e6beb8c6.tar.gz
Issue #24982: shutil.make_archive() with the "zip" format now adds entries
for directories (including empty directories) in ZIP file. Added test for comparing shutil.make_archive() with the "zip" command.
Diffstat (limited to 'Lib/shutil.py')
-rw-r--r--Lib/shutil.py9
1 files changed, 9 insertions, 0 deletions
diff --git a/Lib/shutil.py b/Lib/shutil.py
index 8edabdb332..f47a763f35 100644
--- a/Lib/shutil.py
+++ b/Lib/shutil.py
@@ -679,7 +679,16 @@ def _make_zipfile(base_name, base_dir, verbose=0, dry_run=0, logger=None):
if not dry_run:
with zipfile.ZipFile(zip_filename, "w",
compression=zipfile.ZIP_DEFLATED) as zf:
+ path = os.path.normpath(base_dir)
+ zf.write(path, path)
+ if logger is not None:
+ logger.info("adding '%s'", path)
for dirpath, dirnames, filenames in os.walk(base_dir):
+ for name in sorted(dirnames):
+ path = os.path.normpath(os.path.join(dirpath, name))
+ zf.write(path, path)
+ if logger is not None:
+ logger.info("adding '%s'", path)
for name in filenames:
path = os.path.normpath(os.path.join(dirpath, name))
if os.path.isfile(path):