Java tutorial
import java.io.File; public class Main { public static void main(String[] args) { File f = new File("c:"); boolean bool = f.isDirectory(); String path = f.getPath(); System.out.println(path + " is directory? " + bool); f = new File("c:/test.txt"); bool = f.isDirectory(); path = f.getPath(); System.out.print(path + " is directory? " + bool); } }