(self, path, target)
| 44 | path.zip_file.writestr(zip_info, '') |
| 45 | |
| 46 | def create_symlink(self, path, target): |
| 47 | zip_info = zipfile.ZipInfo(vfspath(path)) |
| 48 | zip_info.external_attr = stat.S_IFLNK << 16 |
| 49 | path.zip_file.writestr(zip_info, target.encode()) |
| 50 | |
| 51 | def create_hierarchy(self, p): |
| 52 | # Add regular files |