Get the number of name element in a Path object : Paths « JDK 7 « Java
- Java
- JDK 7
- Paths
Get the number of name element in a Path object
import java.nio.file.Path;
import java.nio.file.Paths;
public class Test {
public static void main(String[] args) throws Exception{
Path listing = Paths.get("/usr/bin/zip");
System.out.println("Number of Name Elements in the Path [" + listing.getNameCount() + "]");
}
}
Related examples in the same category