archive/zip.FileHeader.ExternalAttrs (field)

8 uses

	archive/zip (current package)
		reader.go#L292: 	f.ExternalAttrs = b.uint32()
		struct.go#L137: 	ExternalAttrs      uint32 // Meaning depends on CreatorVersion
		struct.go#L289: 		mode = unixModeToFileMode(h.ExternalAttrs >> 16)
		struct.go#L291: 		mode = msdosModeToFileMode(h.ExternalAttrs)
		struct.go#L302: 	h.ExternalAttrs = fileModeToUnixMode(mode) << 16
		struct.go#L306: 		h.ExternalAttrs |= msdosDir
		struct.go#L309: 		h.ExternalAttrs |= msdosReadOnly
		writer.go#L126: 		b.uint32(h.ExternalAttrs)