Java IO Tutorial - Java Path.getNameCount()








Syntax

Path.getNameCount() has the following syntax.

int getNameCount()

Example

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

//from   w w w .j ava2s  . c  om
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");

    System.out.println(path.getNameCount());

  }
}

The code above generates the following result.