Antrium A35D

Bir sonraki için en iyisini yap...

File length to KB,MB,GB, Dosya uzunluğunu KB,MB,GB çevirme

Dosya file lenght uzunluğunu;

string[] suf = { "B", "KB", "MB", "GB", "TB", "PB", "EB" }; 

olarak değerlerini geri döndürür.

 public static  String BytesToString(long byteCount)
        {
            string[] suf = { "B", "KB", "MB", "GB", "TB", "PB", "EB" }; 
            if (byteCount == 0)  return "0" + suf[0];
            long bytes = Math.Abs(byteCount);
            int place = Convert.ToInt32(Math.Floor(Math.Log(bytes, 1024)));
            double num = Math.Round(bytes / Math.Pow(1024, place), 1);
            return (Math.Sign(byteCount) * num).ToString() + suf[place];            
        }

402 Okunma | 15.08.2022 16:18

YORUMLAR

Yorum Yaz
Hüseyin ÖZKAN Yazılım Uzmanı

C#,MVC,MSSQL,Windows Forms