Get Subpath from a full path in Java
Description
The following code shows how to get Subpath from a full path.
Example
import java.nio.file.FileSystems;
import java.nio.file.Path;
//from w ww . j av a 2 s . c om
public class Main {
public static void main(String[] args) {
Path path = FileSystems.getDefault().getPath("/home/docs/status.txt");
System.out.printf("subpath(0,2): %s\n", path.subpath(0, 2));
System.out.printf("getParent: %s\n", path.getParent());
}
}
The code above generates the following result.