2014-01-30 68 views

回答

2

如果你正在計算總字節數,那麼你可以用下面的函數來找出KB,MB,GB,TB等

static String BytesToString(long byteCount) 
    { 
     string[] suf = { "B", "KB", "MB", "GB", "TB", "PB", "EB" }; //Longs run out around 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]; 
    } 

希望這將各自的總字節幫你。