Get root from a Path Object
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("getRoot: %s\n", path.getRoot()); } }