Java IO Tutorial - Java Path.endsWith(Path other)








Syntax

Path.endsWith(Path other) has the following syntax.

boolean endsWith(Path other)

Example

In the following code shows how to use Path.endsWith(Path other) method.

//from  ww w.  j  ava  2 s.  co m
import java.nio.file.Path;
import java.nio.file.Paths;

public class Main {

    public static void main(String[] args) {
        Path path = Paths.get("C:", "tutorial/Java/JavaFX", "Topic.txt");
      
        Path path1 = Paths.get("C:", "tutorial/Java/JavaFX", "Topic.txt");
        
        System.out.println(path.endsWith(path1));
 
    }
}

The code above generates the following result.