I want to write a script to add all the ‘.py’ files into a zip file.
Here is what I have:
JavaScript
x
19
19
1
import zipfile
2
import os
3
4
working_folder = 'C:\Python27\'
5
6
files = os.listdir(working_folder)
7
8
files_py = []
9
10
for f in files:
11
if f[-2:] == 'py':
12
fff = working_folder + f
13
files_py.append(fff)
14
15
ZipFile = zipfile.ZipFile("zip testing.zip", "w" )
16
17
for a in files_py:
18
ZipFile.write(a, zipfile.ZIP_DEFLATED)
19
However it gives an error:
JavaScript
1
9
1
Traceback (most recent call last):
2
File "C:Python27working.py", line 19, in <module>
3
ZipFile.write(str(a), zipfile.ZIP_DEFLATED)
4
File "C:Python27libzipfile.py", line 1121, in write
5
arcname = os.path.normpath(os.path.splitdrive(arcname)[1])
6
File "C:Python27libntpath.py", line 125, in splitdrive
7
if p[1:2] == ':':
8
TypeError: 'int' object has no attribute '__getitem__'
9
so seems the file names given is not correct.
Advertisement
Answer
You need to pass in the compression type as a keyword argument:
JavaScript
1
2
1
ZipFile.write(a, compress_type=zipfile.ZIP_DEFLATED)
2
Without the keyword argument, you are giving ZipFile.write()
an integer arcname
argument instead, and that is causing the error you see as the arcname
is being normalised.