You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
using System;
|
|
|
|
|
|
|
|
|
|
namespace NzbDrone.Common.Extensions
|
|
|
|
|
{
|
|
|
|
|
public static class Int64Extensions
|
|
|
|
|
{
|
|
|
|
|
private static readonly string[] SizeSuffixes = { "B", "KB", "MB", "GB", "TB", "PB", "EB", "ZB", "YB" };
|
|
|
|
|
|
|
|
|
|
public static string SizeSuffix(this Int64 bytes)
|
|
|
|
|
{
|
|
|
|
|
const int bytesInKb = 1000;
|
|
|
|
|
|
|
|
|
|
if (bytes < 0) return "-" + SizeSuffix(-bytes);
|
|
|
|
|
if (bytes == 0) return "0 B";
|
|
|
|
|
|
|
|
|
|
var mag = (int)Math.Log(bytes, bytesInKb);
|
|
|
|
|
var adjustedSize = bytes / (decimal)Math.Pow(bytesInKb, mag);
|
|
|
|
|
|
|
|
|
|
return string.Format("{0:n1} {1}", adjustedSize, SizeSuffixes[mag]);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|