使用 C# 获取文件或流的易读大小(KB、MB、GB、TB、KB)

无论是 FileInfo 还是 Stream ,Length 属性代表的是文件或流的大小,单位是 Byte ,该数值非常精确,但并不易读。为此,笔者编辑整理了以下代码用于将 Byte 长度转换为易于阅读的格式。支持 B、KB、MB、GB、TB和PB 单位。

private static readonly string[] suffixes = new string[] { " B", " KB", " MB", " GB", " TB", " PB" };
/// <summary>
/// 获取文件大小的显示字符串
/// </summary>
/// <param name="number"></param>
/// <returns></returns>
public static string BytesToReadableValue(long number)
{
    double last = 1;
    for (int i = 0; i < suffixes.Length; i++)
    {
        var current = Math.Pow(1024, i + 1);
        var temp = number / current;
        if (temp < 1)
        {
            return (number / last).ToString("n2") + suffixes[i];
        }
        last = current;
    }
    return number.ToString();
}

使用方式如下:

static void Main()
{
    using (var fs = File.OpenRead(@"D:\win7.iso"))
    {
        var len = fs.Length;
        Console.WriteLine(BytesToReadableValue(len));
    }
}

这将会输出: 3.71 GB

 

上一篇:【编解码:AVI格式解析】


下一篇:linux 服务器存储情况