mirror of
https://github.com/Llewellynvdm/exa.git
synced 2024-11-22 12:05:11 +00:00
25 lines
634 B
Rust
25 lines
634 B
Rust
static METRIC_PREFIXES: &'static [&'static str] = &[
|
|
"", "K", "M", "G", "T", "P", "E", "Z", "Y"
|
|
];
|
|
|
|
static IEC_PREFIXES: &'static [&'static str] = &[
|
|
"", "Ki", "Mi", "Gi", "Ti", "Pi", "Ei", "Zi", "Yi"
|
|
];
|
|
|
|
fn formatBytes(mut amount: u64, kilo: u64, prefixes: &[&str]) -> String {
|
|
let mut prefix = 0;
|
|
while amount > kilo {
|
|
amount /= kilo;
|
|
prefix += 1;
|
|
}
|
|
format!("{}{}", amount, prefixes[prefix])
|
|
}
|
|
|
|
pub fn formatBinaryBytes(amount: u64) -> String {
|
|
formatBytes(amount, 1024, IEC_PREFIXES)
|
|
}
|
|
|
|
pub fn formatDecimalBytes(amount: u64) -> String {
|
|
formatBytes(amount, 1000, METRIC_PREFIXES)
|
|
}
|