Programming Tips - Java: get the full and basename of a File object

Date: 2012aug1 Language: Java Level: Beginner Q. Java: get the full and basename of a File object A.
File file = new File("/tmp/hello.txt"); String full = node.getAbsolutePath(); // Gives "hello.txt" String basename = node.getName(); // Gives "/tmp/hello.txt"