mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-26 22:46:37 -04:00
f77a2feeef
* Stylecop Rules and Fixes
31 lines
804 B
C#
31 lines
804 B
C#
using System;
|
|
using System.Globalization;
|
|
|
|
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 long bytes)
|
|
{
|
|
const int bytesInKb = 1024;
|
|
|
|
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(CultureInfo.InvariantCulture, "{0:n1} {1}", adjustedSize, SizeSuffixes[mag]);
|
|
}
|
|
}
|
|
}
|