コード例 #1
0
        /// <summary>
        /// Return a human-readable file size.
        /// </summary>
        public static string GetHumanFileSize(ulong Bytes)
        {
            StringBuilder sb = new StringBuilder(11);

            Syscalls.StrFormatByteSize((long)Bytes, sb, sb.Capacity);
            return(sb.ToString());
        }