Java I/O How to - Get name of parent directory








Question

We would like to know how to get name of parent directory.

Answer


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.