Get name of parent directory in Java
Description
The following code shows how to get name of parent directory.
Example
//from ww w . j a v a 2s. c om
import java.io.File;
public class Main {
public static void main(String[] args) {
File file = new File("C:/demo.txt");
System.out.println("Parent directory:" + file.getParent());
}
}
The code above generates the following result.