We would like to know how to get name of parent directory.
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.