Compare commits
2 Commits
4d7668c9ff
...
7a9cd55fb2
Author | SHA1 | Date | |
---|---|---|---|
7a9cd55fb2 | |||
0185a00836 |
@ -34,7 +34,7 @@ func GetOrderNumber() string {
|
|||||||
// ByteFmt 格式化显示文件大小
|
// ByteFmt 格式化显示文件大小
|
||||||
func ByteFmt(size int64) string {
|
func ByteFmt(size int64) string {
|
||||||
var unitArr = []string{"B", "KB", "MB", "GB", "TB", "EB"}
|
var unitArr = []string{"B", "KB", "MB", "GB", "TB", "EB"}
|
||||||
if size == 0 {
|
if size <= 0 {
|
||||||
return "unknown"
|
return "unknown"
|
||||||
}
|
}
|
||||||
fs := float64(size)
|
fs := float64(size)
|
||||||
|
Loading…
Reference in New Issue
Block a user