(dosPermissions, isDir)
| 13078 | * Bit 5 Archive |
| 13079 | */ |
| 13080 | var generateDosExternalFileAttr = function (dosPermissions, isDir) { |
| 13081 | |
| 13082 | // the dir flag is already set for compatibility |
| 13083 | |
| 13084 | return (dosPermissions || 0) & 0x3F; |
| 13085 | }; |
| 13086 | |
| 13087 | /** |
| 13088 | * Generate the various parts used in the construction of the final zip file. |