IPath.Resolve Method

Definition

Overloads

Resolve(IPath)

Resolve the given path against this path.

Resolve(String)

Converts a given path string to a Path and resolves it against this Path in exactly the manner specified by the #resolve(Path) resolve method.

Resolve(IPath)

Resolve the given path against this path.

[Android.Runtime.Register("resolve", "(Ljava/nio/file/Path;)Ljava/nio/file/Path;", "GetResolve_Ljava_nio_file_Path_Handler:Java.Nio.FileNio.IPathInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null", ApiSince=26)]
public Java.Nio.FileNio.IPath? Resolve (Java.Nio.FileNio.IPath? other);
[<Android.Runtime.Register("resolve", "(Ljava/nio/file/Path;)Ljava/nio/file/Path;", "GetResolve_Ljava_nio_file_Path_Handler:Java.Nio.FileNio.IPathInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null", ApiSince=26)>]
abstract member Resolve : Java.Nio.FileNio.IPath -> Java.Nio.FileNio.IPath

Parameters

other
IPath

the path to resolve against this path

Returns

IPath

the resulting path

Attributes

Remarks

Java documentation for java.nio.file.Path.resolve(java.nio.file.Path).

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

Resolve(String)

Converts a given path string to a Path and resolves it against this Path in exactly the manner specified by the #resolve(Path) resolve method.

[Android.Runtime.Register("resolve", "(Ljava/lang/String;)Ljava/nio/file/Path;", "GetResolve_Ljava_lang_String_Handler:Java.Nio.FileNio.IPathInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null", ApiSince=26)]
public Java.Nio.FileNio.IPath? Resolve (string? other);
[<Android.Runtime.Register("resolve", "(Ljava/lang/String;)Ljava/nio/file/Path;", "GetResolve_Ljava_lang_String_Handler:Java.Nio.FileNio.IPathInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null", ApiSince=26)>]
abstract member Resolve : string -> Java.Nio.FileNio.IPath

Parameters

other
String

the path string to resolve against this path

Returns

IPath

the resulting path

Attributes

Remarks

Java documentation for java.nio.file.Path.resolve(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