Does anyone know how to use Java to create sub-directories based on the alphabets (a-z) that is n levels deep?
/a /a /a /b /c
You can simply use the mkdirs() method of java.io.File class.
java.io.File
Example:
new File("C:\\Directory1\\Directory2").mkdirs();