New submission from Micheal Gardner :
when i want to zip a empty folder, i use following code
```
import zipfile
zfile = zipfile.ZipFile("tmp.zip",'w')
zif = zipfile.ZipInfo("tmp/")
zfile.writestr(zif,"")
zfile.close()
```
but in this case, things become weird.
```
# 先造一个测试文件夹
mkdir /tmp/test_folder/
touch /tmp/test_folder/test.md
```
```
import zipfile
file_path = "/tmp/test_folder/test.md"
rel_name = "test.md"
zfile = zipfile.ZipFile("tmp.zip",'w')
zif = zipfile.ZipInfo("tmp/")
zfile.writestr(zif,"")
zfile.write(file_path, rel_name)
zfile.close()
```
decompression expect
```
$ tree tmp
tmp
├── test.md
1 file
```
decompression actual
```
$ tree tmp
tmp
├── test.md
└── tmp
1 directory, 1 file
```
--
___
Python tracker
<https://bugs.python.org/issue33993>
___
___
Python-bugs-list mailing list
Unsubscribe:
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com