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