Skip to content

Instantly share code, notes, and snippets.

@ttys3
Forked from lunny/diskinfo.go
Last active July 29, 2022 06:48
Show Gist options
  • Star 7 You must be signed in to star a gist
  • Fork 3 You must be signed in to fork a gist
  • Save ttys3/21e2a1215cf1905ab19ddcec03927c75 to your computer and use it in GitHub Desktop.
Save ttys3/21e2a1215cf1905ab19ddcec03927c75 to your computer and use it in GitHub Desktop.
Disk Usage info like `df -h` for Golang
package main
import (
"fmt"
syscall "golang.org/x/sys/unix"
)
type DiskStatus struct {
All uint64 `json:"all"`
Used uint64 `json:"used"`
Free uint64 `json:"free"`
Avail uint64 `json:"avail"`
}
// disk usage of path/disk
func DiskUsage(path string) (disk DiskStatus) {
fs := syscall.Statfs_t{}
err := syscall.Statfs(path, &fs)
if err != nil {
return
}
disk.All = fs.Blocks * uint64(fs.Bsize)
disk.Avail = fs.Bavail * uint64(fs.Bsize)
disk.Free = fs.Bfree * uint64(fs.Bsize)
disk.Used = disk.All - disk.Free
return
}
const (
B = 1
KB = 1024 * B
MB = 1024 * KB
GB = 1024 * MB
)
func main() {
disk := DiskUsage("/")
fmt.Printf("All: %.2f GB\n", float64(disk.All)/float64(GB))
fmt.Printf("Avail: %.2f GB\n", float64(disk.Avail)/float64(GB))
fmt.Printf("Used: %.2f GB\n", float64(disk.Used)/float64(GB))
}
@ikbear
Copy link

ikbear commented Mar 28, 2020

disk.Used data is not correct on Mac. It should be disk.All - disk. Avail

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment