Java tutorial
import java.io.File; public class Main { public static void main(String[] args) throws Exception { File f = new File("test.txt"); // create new file in the system f.createNewFile(); // create new file object from the absolute path File f1 = f.getAbsoluteFile(); System.out.println(f1); } }