Update win_copy for #32677 (#32682)

* Update win_copy for #32677

enable large zip file support in win_copy

* Update win_copy.py
pull/32770/head
u625030 7 years ago committed by Jordan Borean
parent 9c0275a879
commit 6d597ac05a

@ -233,7 +233,7 @@ class ActionModule(ActionBase):
def _create_zip_tempfile(self, files, directories):
tmpdir = tempfile.mkdtemp()
zip_file_path = os.path.join(tmpdir, "win_copy.zip")
zip_file = zipfile.ZipFile(zip_file_path, "w")
zip_file = zipfile.ZipFile(zip_file_path, "w", zipfile.ZIP_STORED, True)
# encoding the file/dir name with base64 so Windows can unzip a unicode
# filename and get the right name, Windows doesn't handle unicode names

Loading…
Cancel
Save