다음을 통해 공유


IPath.EndsWith 메서드

정의

오버로드

EndsWith(IPath)

이 경로가 지정된 경로로 끝나는지 테스트합니다.

EndsWith(String)

이 경로가 메서드에서 지정 #endsWith(Path) endsWith(Path) 한 방식으로 지정된 경로 문자열을 변환하여 생성된 경로로 Path끝나는지 테스트합니다.

EndsWith(IPath)

이 경로가 지정된 경로로 끝나는지 테스트합니다.

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

매개 변수

other
IPath

지정된 경로

반환

true 이 경로가 지정된 경로로 끝나면 그렇지 않으면 false

특성

설명

이 경로가 지정된 경로로 끝나는지 테스트합니다.

지정된 경로 <에 em>N</em> 요소가 있고 루트 구성 요소가 없고 이 경로 <에 em>N</em> 이상의 요소가 있는 경우 이 경로는 루트에서 가장 먼 요소에서 시작하는 각 경로의 마지막 <em>N</em> 요소가 같으면 지정된 경로로 끝납니다.

지정된 경로에 루트 구성 요소가 있는 경우 이 경로의 루트 구성 요소가 지정된 경로의 루트 구성 요소와 함께 종료되고 두 경로<>의 해당 요소가 같으면 이 경로가 지정된 경로로<> 끝납니다. 이 경로의 루트 구성 요소가 지정된 경로의 루트 구성 요소로 끝나는지 여부는 파일 시스템에 따라 다릅니다. 이 경로에 루트 구성 요소가 없으며 지정된 경로에 루트 구성 요소가 있는 경우 이 경로는 지정된 경로로 끝나지 않습니다.

지정된 경로가 이 경로와 다른 FileSystem 경로 false 와 연결된 경우 반환됩니다.

에 대한 java.nio.file.Path.endsWith(java.nio.file.Path)Java 설명서

이 페이지의 일부는 Android 오픈 소스 프로젝트에서 만들고 공유하고 Creative Commons 2.5 특성 라이선스에 설명된 용어에 따라 사용되는 작업을 기반으로 하는 수정 사항입니다.

적용 대상

EndsWith(String)

이 경로가 메서드에서 지정 #endsWith(Path) endsWith(Path) 한 방식으로 지정된 경로 문자열을 변환하여 생성된 경로로 Path끝나는지 테스트합니다.

[Android.Runtime.Register("endsWith", "(Ljava/lang/String;)Z", "GetEndsWith_Ljava_lang_String_Handler:Java.Nio.FileNio.IPathInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null", ApiSince=26)]
public bool EndsWith (string? other);
[<Android.Runtime.Register("endsWith", "(Ljava/lang/String;)Z", "GetEndsWith_Ljava_lang_String_Handler:Java.Nio.FileNio.IPathInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null", ApiSince=26)>]
abstract member EndsWith : string -> bool

매개 변수

other
String

지정된 경로 문자열

반환

true 이 경로가 지정된 경로로 끝나면 그렇지 않으면 false

특성

설명

이 경로가 메서드에서 지정 #endsWith(Path) endsWith(Path) 한 방식으로 지정된 경로 문자열을 변환하여 생성된 경로로 Path끝나는지 테스트합니다. 예를 들어 UNIX에서 경로 ""는 "foo/bar" 및 "foo/barbar"로 끝납니다. "" 또는/bar "r"로 끝나지 않습니다. 후행 구분 기호는 고려되지 않으므로 "bar/"를 사용하여 "foo/bar"에서 Path이 메서드를 String 호출하면 반환됩니다true.

에 대한 java.nio.file.Path.endsWith(java.lang.String)Java 설명서

이 페이지의 일부는 Android 오픈 소스 프로젝트에서 만들고 공유하고 Creative Commons 2.5 특성 라이선스에 설명된 용어에 따라 사용되는 작업을 기반으로 하는 수정 사항입니다.

적용 대상