mirror of
https://github.com/minio/minio.git
synced 2024-12-26 23:25:54 -05:00
a8a935f5fd
``` StatFS { Total int64 Free int64 FSType string } ``` Provides more information in a cross platform way.
12 lines
267 B
Go
12 lines
267 B
Go
package disk
|
|
|
|
// StatFS stat fs struct is container which holds following values
|
|
// Total - total size of the volume / disk
|
|
// Free - free size of the volume / disk
|
|
// FSType - file system type string
|
|
type StatFS struct {
|
|
Total int64
|
|
Free int64
|
|
FSType string
|
|
}
|