This repository has been archived on 2024-02-08. You can view files and clone it, but cannot push or open issues or pull requests.
Files
teamcity-executors-test-task/src/main/kotlin/ziputils/Zip64ExtraFieldRecord.kt
Gleb Koval 694b8d4d28
All checks were successful
Test Workflow / Lint and test library (push) Successful in 17m11s
Publish Workflow / Publish library (push) Successful in 8m49s
CLI implementation & linting (#2)
Implement a basic CLI interface & add linting to the project.

Reviewed-on: #2
2023-12-30 06:36:49 +00:00

16 lines
364 B
Kotlin

package ziputils
/**
* Represents a ZIP ZIP64 extra field record (ID 0x0001).
*/
internal class Zip64ExtraFieldRecord(
size: UShort,
val uncompressedSize: ULong?,
val compressedSize: ULong?,
val localHeaderOffset: ULong?,
val disk: UInt?,
) : ExtraFieldRecord(ID, size) {
companion object {
const val ID: UShort = 0x0001U
}
}