Package DE_EPAGES::TLE::API::ByteFormatter
TLE format handler for bytes and bits. The Value is always given in Bytes. This handler supports the following formats:
- [KB] $Value /= 1024
- [MB] $Value /= 1048576; # 1024 ^ 2
- [GB] $Value /= 1073741824; # 1024 ^ 3
- [Bit] $Value *= 8;
Example |
#FileName #Size[KB] {KiloByte} #Size = 1025 #Size[KB] = 2 |