#file #size #utility #format

file-size

a function formatting file sizes in 4 chars

4 stable releases

1.0.3 Sep 30, 2020
1.0.2 Aug 23, 2020
1.0.0 Aug 22, 2020

#1549 in Text processing

Download history 854/week @ 2023-11-20 750/week @ 2023-11-27 752/week @ 2023-12-04 766/week @ 2023-12-11 826/week @ 2023-12-18 790/week @ 2023-12-25 823/week @ 2024-01-01 769/week @ 2024-01-08 785/week @ 2024-01-15 672/week @ 2024-01-22 841/week @ 2024-01-29 836/week @ 2024-02-05 747/week @ 2024-02-12 859/week @ 2024-02-19 868/week @ 2024-02-26 856/week @ 2024-03-04

3,447 downloads per month
Used in 12 crates (11 directly)

MIT license

5KB
72 lines

A small function formatting a file size into the nearest ISO representation fitting into 4 characters.

Examples:

use file_size::fit_4;

assert_eq!(&fit_4(999), "999");
assert_eq!(&fit_4(12345), "12K");
assert_eq!(&fit_4(999_999), "1.0M");
assert_eq!(&fit_4(7_155_456_789_012), "7.2T");

lib.rs:

Format a file size into 4 characters.

Examples:

use file_size::fit_4;

assert_eq!(&fit_4(999), "999");
assert_eq!(&fit_4(12345), "12K");
assert_eq!(&fit_4(999_999), "1.0M");
assert_eq!(&fit_4(7_155_456_789_012), "7.2T");

!

No runtime deps