Get the folder/directory for each part of a full path
import java.nio.file.FileSystems;
import java.nio.file.Path;
public class Test {
public static void main(String[] args) {
Path path = FileSystems.getDefault().getPath("/home/docs/status.txt");
System.out.printf("getNameCount: %d\n", path.getNameCount());
for (int index = 0; index < path.getNameCount(); index++) {
System.out.printf("getName(%d): %s\n", index, path.getName(index));
}
}
}
Related examples in the same category