Added in API level 21
StructStatVfs
class StructStatVfs
kotlin.Any | |
↳ | android.system.StructStatVfs |
File information returned by Os#fstatvfs
and Os#statvfs
.
Summary
Public constructors | |
---|---|
StructStatVfs(f_bsize: Long, f_frsize: Long, f_blocks: Long, f_bfree: Long, f_bavail: Long, f_files: Long, f_ffree: Long, f_favail: Long, f_fsid: Long, f_flag: Long, f_namemax: Long) Constructs an instance with the given field values. |
Public methods | |
---|---|
String |
toString() |
Properties | |
---|---|
Long |
Free block count available to non-root. |
Long |
Free block count. |
Long |
Total block count. |
Long |
File system block size (used for block counts). |
Long |
Free file (inode) count available to non-root. |
Long |
Free file (inode) count. |
Long |
Total file (inode) count. |
Long |
Bit mask of ST_* flags. |
Long |
Fundamental file system block size. |
Long |
File system id. |
Long |
Maximum filename length. |
Public constructors
StructStatVfs
Added in API level 21
StructStatVfs(
f_bsize: Long,
f_frsize: Long,
f_blocks: Long,
f_bfree: Long,
f_bavail: Long,
f_files: Long,
f_ffree: Long,
f_favail: Long,
f_fsid: Long,
f_flag: Long,
f_namemax: Long)
Constructs an instance with the given field values.
Public methods
toString
Added in API level 21
fun toString(): String
Return | |
---|---|
String |
a string representation of the object. |