summaryrefslogtreecommitdiff
path: root/common/files/bytesize.go
diff options
context:
space:
mode:
authorKeuin <[email protected]>2023-07-07 00:34:55 +0800
committerKeuin <[email protected]>2023-07-07 00:34:55 +0800
commit7fd817f6d1ead3de85294c1893a6e1572a1d12e3 (patch)
tree38b9f13104fe208449b679a2b77959dea5ab1b4e /common/files/bytesize.go
parent6eb5a7af48d04adc5625cbc8355e2556db4b992f (diff)
Refactor: move file operations into single package.
Diffstat (limited to 'common/files/bytesize.go')
-rw-r--r--common/files/bytesize.go19
1 files changed, 19 insertions, 0 deletions
diff --git a/common/files/bytesize.go b/common/files/bytesize.go
new file mode 100644
index 0000000..95f857a
--- /dev/null
+++ b/common/files/bytesize.go
@@ -0,0 +1,19 @@
+package files
+
+import "fmt"
+
+func PrettyBytes(b uint64) string {
+ if b < 1000 {
+ return fmt.Sprintf("%d Byte", b)
+ }
+ if b < 1000_000 {
+ return fmt.Sprintf("%.2f KiB", float64(b)/1024)
+ }
+ if b < 1000_000_000 {
+ return fmt.Sprintf("%.2f MiB", float64(b)/1024/1024)
+ }
+ if b < 1000_000_000_000 {
+ return fmt.Sprintf("%.2f GiB", float64(b)/1024/1024/1024)
+ }
+ return fmt.Sprintf("%.2f TiB", float64(b)/1024/1024/1024/1024)
+}