StructStatVfs Constructor
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Constructs an instance with the given field values.
[Android.Runtime.Register(".ctor", "(JJJJJJJJJJJ)V", "")]
public StructStatVfs(long 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);
[<Android.Runtime.Register(".ctor", "(JJJJJJJJJJJ)V", "")>]
new Android.Systems.StructStatVfs : int64 * int64 * int64 * int64 * int64 * int64 * int64 * int64 * int64 * int64 * int64 -> Android.Systems.StructStatVfs
Parameters
- f_bsize
- Int64
The file system block size.
- f_frsize
- Int64
The fragment size in bytes.
- f_blocks
- Int64
The total number of blocks in the file system, in units of f_frsize.
- f_bfree
- Int64
The number of free blocks, in units of f_frsize.
- f_bavail
- Int64
The number of free blocks available to non-root users, in units of f_frsize.
- f_files
- Int64
The total file (inode) count.
- f_ffree
- Int64
The free file (inode) count.
- f_favail
- Int64
The free file (inode) count available to non-root users.
- f_fsid
- Int64
The file system ID.
- f_flag
- Int64
A bit mask of ST_* flags.
- f_namemax
- Int64
The maximum filename length.
- Attributes
Remarks
Constructs an instance with the given field values.
Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.