File Java Tutorial

import java.io.File;
public class Main {
  public static void main(String[] args) {
    File file = new File("C:/Demo.txt");
    System.out.println("File name is : " + file.getName());
  }
}