You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
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
|
|
}
|
|
|