-
-
Save smallnest/0071b5fddcdb1c00ad74ea0c9a9b6cdf to your computer and use it in GitHub Desktop.
Disk Info for Golang
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import ( | |
"fmt" | |
"syscall" | |
) | |
type DiskStatus struct { | |
All uint64 `json:"all"` | |
Used uint64 `json:"used"` | |
Free uint64 `json:"free"` | |
} | |
// 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.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("Used: %.2f GB\n", float64(disk.Used)/float64(GB)) | |
fmt.Printf("Free: %.2f GB\n", float64(disk.Free)/float64(GB)) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
https://stackoverflow.com/questions/20108520/get-amount-of-free-disk-space-using-go