Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
385ffbff
Commit
385ffbff
authored
Sep 23, 2014
by
Serhiy Storchaka
Browse files
Options
Browse Files
Download
Plain Diff
Issue #20912: Now directories added to ZIP file have correct Unix and MS-DOS
directory attributes.
parents
09a555eb
46a34924
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
50 additions
and
5 deletions
+50
-5
Lib/test/test_zipfile.py
Lib/test/test_zipfile.py
+41
-4
Lib/zipfile.py
Lib/zipfile.py
+6
-1
Misc/NEWS
Misc/NEWS
+3
-0
No files found.
Lib/test/test_zipfile.py
View file @
385ffbff
...
...
@@ -1696,11 +1696,48 @@ class TestWithDirectory(unittest.TestCase):
os
.
mkdir
(
os
.
path
.
join
(
TESTFN2
,
"a"
))
self
.
test_extract_dir
()
def
test_store_dir
(
self
):
def
test_write_dir
(
self
):
dirpath
=
os
.
path
.
join
(
TESTFN2
,
"x"
)
os
.
mkdir
(
dirpath
)
mode
=
os
.
stat
(
dirpath
).
st_mode
&
0xFFFF
with
zipfile
.
ZipFile
(
TESTFN
,
"w"
)
as
zipf
:
zipf
.
write
(
dirpath
)
zinfo
=
zipf
.
filelist
[
0
]
self
.
assertTrue
(
zinfo
.
filename
.
endswith
(
"/x/"
))
self
.
assertEqual
(
zinfo
.
external_attr
,
(
mode
<<
16
)
|
0x10
)
zipf
.
write
(
dirpath
,
"y"
)
zinfo
=
zipf
.
filelist
[
1
]
self
.
assertTrue
(
zinfo
.
filename
,
"y/"
)
self
.
assertEqual
(
zinfo
.
external_attr
,
(
mode
<<
16
)
|
0x10
)
with
zipfile
.
ZipFile
(
TESTFN
,
"r"
)
as
zipf
:
zinfo
=
zipf
.
filelist
[
0
]
self
.
assertTrue
(
zinfo
.
filename
.
endswith
(
"/x/"
))
self
.
assertEqual
(
zinfo
.
external_attr
,
(
mode
<<
16
)
|
0x10
)
zinfo
=
zipf
.
filelist
[
1
]
self
.
assertTrue
(
zinfo
.
filename
,
"y/"
)
self
.
assertEqual
(
zinfo
.
external_attr
,
(
mode
<<
16
)
|
0x10
)
target
=
os
.
path
.
join
(
TESTFN2
,
"target"
)
os
.
mkdir
(
target
)
zipf
.
extractall
(
target
)
self
.
assertTrue
(
os
.
path
.
isdir
(
os
.
path
.
join
(
target
,
"y"
)))
self
.
assertEqual
(
len
(
os
.
listdir
(
target
)),
2
)
def
test_writestr_dir
(
self
):
os
.
mkdir
(
os
.
path
.
join
(
TESTFN2
,
"x"
))
zipf
=
zipfile
.
ZipFile
(
TESTFN
,
"w"
)
zipf
.
write
(
os
.
path
.
join
(
TESTFN2
,
"x"
),
"x"
)
self
.
assertTrue
(
zipf
.
filelist
[
0
].
filename
.
endswith
(
"x/"
))
with
zipfile
.
ZipFile
(
TESTFN
,
"w"
)
as
zipf
:
zipf
.
writestr
(
"x/"
,
b''
)
zinfo
=
zipf
.
filelist
[
0
]
self
.
assertEqual
(
zinfo
.
filename
,
"x/"
)
self
.
assertEqual
(
zinfo
.
external_attr
,
(
0o40775
<<
16
)
|
0x10
)
with
zipfile
.
ZipFile
(
TESTFN
,
"r"
)
as
zipf
:
zinfo
=
zipf
.
filelist
[
0
]
self
.
assertTrue
(
zinfo
.
filename
.
endswith
(
"x/"
))
self
.
assertEqual
(
zinfo
.
external_attr
,
(
0o40775
<<
16
)
|
0x10
)
target
=
os
.
path
.
join
(
TESTFN2
,
"target"
)
os
.
mkdir
(
target
)
zipf
.
extractall
(
target
)
self
.
assertTrue
(
os
.
path
.
isdir
(
os
.
path
.
join
(
target
,
"x"
)))
self
.
assertEqual
(
os
.
listdir
(
target
),
[
"x"
])
def
tearDown
(
self
):
rmtree
(
TESTFN2
)
...
...
Lib/zipfile.py
View file @
385ffbff
...
...
@@ -1356,6 +1356,7 @@ class ZipFile:
zinfo
.
file_size
=
0
zinfo
.
compress_size
=
0
zinfo
.
CRC
=
0
zinfo
.
external_attr
|=
0x10
# MS-DOS directory flag
self
.
filelist
.
append
(
zinfo
)
self
.
NameToInfo
[
zinfo
.
filename
]
=
zinfo
self
.
fp
.
write
(
zinfo
.
FileHeader
(
False
))
...
...
@@ -1416,7 +1417,11 @@ class ZipFile:
zinfo
=
ZipInfo
(
filename
=
zinfo_or_arcname
,
date_time
=
time
.
localtime
(
time
.
time
())[:
6
])
zinfo
.
compress_type
=
self
.
compression
zinfo
.
external_attr
=
0o600
<<
16
if
zinfo
.
filename
[
-
1
]
==
'/'
:
zinfo
.
external_attr
=
0o40775
<<
16
# drwxrwxr-x
zinfo
.
external_attr
|=
0x10
# MS-DOS directory flag
else
:
zinfo
.
external_attr
=
0o600
<<
16
# ?rw-------
else
:
zinfo
=
zinfo_or_arcname
...
...
Misc/NEWS
View file @
385ffbff
...
...
@@ -137,6 +137,9 @@ Core and Builtins
Library
-------
-
Issue
#
20912
:
Now
directories
added
to
ZIP
file
have
correct
Unix
and
MS
-
DOS
directory
attributes
.
-
Issue
#
21866
:
ZipFile
.
close
()
no
longer
writes
ZIP64
central
directory
records
if
allowZip64
is
false
.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment