Share via


StatFs Constructors

Definition

Overloads

StatFs(String)

Construct a new StatFs for looking at the stats of the filesystem at path.

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

javaReference
IntPtr

nativeint

A IntPtrcontaining a Java Native Interface (JNI) object reference.

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.

Applies to