Java tutorial
import java.io.File; public class Main { public static void main(String[] args) { // returns pathnames for files and directory File f = new File("C:/Texts"); // create boolean bool = f.mkdir(); System.out.print("Directory created? " + bool); } }