Delphi 学习大师
个人中心
搜索
Delphi 学习大师
文章详情
副标题
delphi 字节数转换为KB或MB字符串
2018-10-30
//delphi 字节数转换为KB或MB字符串
function BytesToStr(iBytes: Integer): String;
var
iKb: Integer;
begin
iKb := Round(iBytes / 1024);
if iKb > 1000 then
Result := Format(‘%.2f MB‘, [iKb / 1024])
else
Result := Format(‘%d KB‘, [iKb]);
end;
线程
阅读39
发表评论
登录评论
匿名评论
提交
提交