go 根据文件的大小,加上单位值

package main

import (
	"fmt"
	"io/ioutil"
)

func FormatSize(size int64) string {
	units := [6]string{"B", "KB", "MB", "GB", "TB", "PB"}

	fsize := float64(size)
	unit := float64(1024)

	index := 0
	// fisze > 1024KB, fsize <1024B
	for fsize >= unit && index < len(units)-1 {
		fsize /= unit
		index++
	}
	return fmt.Sprintf("%.2f%s", fsize, units[index])

}

func main() {
	files, err := ioutil.ReadDir(".")
	fmt.Println(err)
	for _, file := range files {
		if file.IsDir() {
			fmt.Println("D", file.Name(), file.ModTime().Format("2006-01-02 15:03:04"))
		} else {
			//fmt.Println(file.Size())
			fmt.Println(FormatSize(file.Size()))
		}

	}
}
上一篇:求出整型数组s[n]中任意n-1个数的乘积的最大值,不能用除法,要求时间复杂度为o(n)


下一篇:每日一题-82(列出指定时间段内所有的下单产品)