1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48
|
// Copied from https://github.com/ricochet2200/go-disk-usage
// Copyright 2011 Rick Smith.
// Use of this source code is governed by a public domain
// license that can be found in the LICENSE.ricochet2200 file.
//
// +build !windows
package du
import "syscall"
type DiskUsage struct {
stat *syscall.Statfs_t
}
// Returns an object holding the disk usage of volumePath
// This function assumes volumePath is a valid path
func NewDiskUsage(volumePath string) *DiskUsage {
var stat syscall.Statfs_t
syscall.Statfs(volumePath, &stat)
return &DiskUsage{&stat}
}
// Total free bytes on file system
func (this *DiskUsage) Free() uint64 {
return this.stat.Bfree * uint64(this.stat.Bsize)
}
// Total available bytes on file system to an unpriveleged user
func (this *DiskUsage) Available() uint64 {
return this.stat.Bavail * uint64(this.stat.Bsize)
}
// Total size of the file system
func (this *DiskUsage) Size() uint64 {
return this.stat.Blocks * uint64(this.stat.Bsize)
}
// Total bytes used in file system
func (this *DiskUsage) Used() uint64 {
return this.Size() - this.Free()
}
// Percentage of use on the file system
func (this *DiskUsage) Usage() float32 {
return float32(this.Used()) / float32(this.Size())
}
|