IPath.ResolveSibling Method
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
| ResolveSibling(IPath) |
Resolves the given path against this path's |
| ResolveSibling(String) |
Converts a given path string to a |
ResolveSibling(IPath)
Resolves the given path against this path's #getParent parent
path.
[Android.Runtime.Register("resolveSibling", "(Ljava/nio/file/Path;)Ljava/nio/file/Path;", "GetResolveSibling_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? ResolveSibling (Java.Nio.FileNio.IPath? other);
[<Android.Runtime.Register("resolveSibling", "(Ljava/nio/file/Path;)Ljava/nio/file/Path;", "GetResolveSibling_Ljava_nio_file_Path_Handler:Java.Nio.FileNio.IPathInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null", ApiSince=26)>]
abstract member ResolveSibling : Java.Nio.FileNio.IPath -> Java.Nio.FileNio.IPath
Parameters
- other
- IPath
the path to resolve against this path's parent
Returns
the resulting path
- Attributes
Remarks
Java documentation for java.nio.file.Path.resolveSibling(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
ResolveSibling(String)
Converts a given path string to a Path and resolves it against
this path's #getParent parent path in exactly the manner
specified by the #resolveSibling(Path) resolveSibling method.
[Android.Runtime.Register("resolveSibling", "(Ljava/lang/String;)Ljava/nio/file/Path;", "GetResolveSibling_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? ResolveSibling (string? other);
[<Android.Runtime.Register("resolveSibling", "(Ljava/lang/String;)Ljava/nio/file/Path;", "GetResolveSibling_Ljava_lang_String_Handler:Java.Nio.FileNio.IPathInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null", ApiSince=26)>]
abstract member ResolveSibling : string -> Java.Nio.FileNio.IPath
Parameters
- other
- String
the path string to resolve against this path's parent
Returns
the resulting path
- Attributes
Remarks
Java documentation for java.nio.file.Path.resolveSibling(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.