/
githubmirror
/
rclone
Обзор
Документация
Войти
/
githubmirror
/
rclone
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
v1.74.3
lib/diskusage/diskusage.go
15 строк
520 B
Nick Craig-Wood
Add lib/diskusage to measure used/free on disks
07 сен 2023, 17:57
07 сен 2023, 17:57
0fb3656
Код
Авторство
О чём код?
// Package diskusage provides a cross platform version of the statfs // system call to read disk space usage. package diskusage import "errors" // Info is returned from New showing details about the disk. type Info struct { Free uint64 // total free bytes Available uint64 // free bytes available to the current user Total uint64 // total bytes on disk } // ErrUnsupported is returned if this platform doesn't support disk usage. var ErrUnsupported = errors.New("disk usage unsupported on this platform")