StatFs Constructors
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.
Overloads
StatFs(String) |
Construct a new StatFs for looking at the stats of the filesystem at
|
StatFs(IntPtr, JniHandleOwnership) |
A constructor used when creating managed representations of JNI objects; called by the runtime. |
StatFs(String)
Construct a new StatFs for looking at the stats of the filesystem at
path
.
[Android.Runtime.Register(".ctor", "(Ljava/lang/String;)V", "")]
public StatFs (string? path);
[<Android.Runtime.Register(".ctor", "(Ljava/lang/String;)V", "")>]
new Android.OS.StatFs : string -> Android.OS.StatFs
Parameters
- path
- String
path in the desired file system to stat.
- Attributes
Remarks
Construct a new StatFs for looking at the stats of the filesystem at path
. Upon construction, the stat of the file system will be performed, and the values retrieved available from the methods on this class.
Java documentation for android.os.StatFs.StatFs(java.lang.String)
.
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.
Applies to
StatFs(IntPtr, JniHandleOwnership)
A constructor used when creating managed representations of JNI objects; called by the runtime.
protected StatFs (IntPtr javaReference, Android.Runtime.JniHandleOwnership transfer);
new Android.OS.StatFs : nativeint * Android.Runtime.JniHandleOwnership -> Android.OS.StatFs
Parameters
- transfer
- JniHandleOwnership
A JniHandleOwnershipindicating how to handle javaReference
Remarks
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.