2020-07-08 14:58:09 +00:00
|
|
|
package fsutil
|
|
|
|
|
|
|
|
type FsStat struct {
|
2021-02-18 15:44:34 +00:00
|
|
|
Capacity int64
|
|
|
|
Available int64 // Available to use for sector storage
|
|
|
|
FSAvailable int64 // Available in the filesystem
|
|
|
|
Reserved int64
|
|
|
|
|
|
|
|
// non-zero when storage has configured MaxStorage
|
|
|
|
Max int64
|
|
|
|
Used int64
|
2020-07-08 14:58:09 +00:00
|
|
|
}
|