namespace zero.FileStorage;
public enum FileSizeNotation
{
///
/// Multiply by 1.000, as specified by the International System of Units (e.g. kB, MB, GB)
///
SI = 0,
///
/// Binary notation with a multiplier of 1.024 (e.g. KiB, MiB, GiB)
///
IEC = 1,
///
/// Binary notation with a multiplier of 1.024 (e.g. KB, MB, GB).
/// Ends with GB, there is no TB, ...
///
JEDEC = 2
}