Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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
        ..
    /b
        /a
        /b
        ..
    ..
        /a
        /b
        /c
        ..

/b
    /a
        /a
        /b
        ..
    /b
        /a
        /b
        ..
    ..
        /a
        /b
        ..
..
    /a
        /a
        /b
        ..
    /b
        /a
        /b
        ..
    ..
        /a
        /b
        ..
share|improve this question
3  
Yes, we know this. But what have you tried so far? – Thor Jul 21 '11 at 10:18
i'm not a java newbie.. recursion just isn't my forte. – osley Jul 21 '11 at 10:25
Are you sure you want to create 18278 directories (for n = 3), without any contents? – PaĆ­lo Ebermann Jul 21 '11 at 12:51
the intent was for n = 7 actually but i've scrapped the idea. haha. – osley Jul 26 '11 at 9:48

5 Answers

up vote 2 down vote accepted
public static void main(String[] args) {
  File root = new File("C:\\SO");
  List<String> alphabet = new ArrayList<String>();
  for (int i = 0; i < 26; i++) {
    alphabet.add(String.valueOf((char)('a' + i)));
  }

  final int depth = 3;
  mkDirs(root, alphabet, depth);
}

public static void mkDirs(File root, List<String> dirs, int depth) {
  if (depth == 0) return;
  for (String s : dirs) {
    File subdir = new File(root, s);
    subdir.mkdir();
    mkDirs(subdir, dirs, depth - 1);
  }
}

mkDirs recusively creates a depth-level directory tree based on a given list of Strings, which, in the case of main, consists of a list of characters in the English alphabet.

share|improve this answer

You can simply use the mkdirs() method of java.io.File class.

share|improve this answer

You could use three loops over characters a-z like so:

import java.io.*;

public class FileCreate {

    public static void main(String[] args) throws Exception {
        char trunkDirectory = 'a';
        char branchDirectory = 'a';
        char leaf = 'a';

        while (trunkDirectory != '{') {
            while (branchDirectory != '{') {
                while (leaf != '{') {
                    System.out.println(trunkDirectory + "/" + branchDirectory + "/" + leaf++);
                }
                leaf = 'a';
                branchDirectory++;
            }
            branchDirectory = 'a';
            trunkDirectory++;
        }

    }
}

This simply outputs the paths to the console. You could use File#mkdirs() to create a recursive directory structure or create the directories in each intermediate part of the nested loop. I'll leave that for you to finish.

share|improve this answer
Genius! Another qn: what if I want to limit to a certain set of alphabets instead? – osley Jul 21 '11 at 10:24
If the subset is consecutive then the begin and end characters can easily be changed. If it's a sparse set of characters then it's probably best to create a character array e.g. char[] alphabet = {'a','e','i','o','u'}; and loop that instead with an index like for(int i=0;i<alphabet.length;i++) { alphabet[i++]; }; – andyb Jul 21 '11 at 10:31

If you don't mind relying on a 3rd party API, the Apache Commons IO package does this directly for you. Take a look at FileUtils.ForceMkdir.

The Apache license is commercial software development friendly, i.e. it doesn't require you to distribute your source code the way the GPL does. (Which may be a good or a bad thing, depending on your point of view).

share|improve this answer

I would write a little utility method that takes the start and the end letter as well as the desired deepth as parameters. This method calls itself recursively till done:

 private static void createAlphabetFolders(File parent, int start, int end, int deepth){

    if(deepth <= 0){
      return;
    }

    for (int i=start; i < end; i++){

      // create the folder
      String folderName = "" + ((char) i);
      File folder = new File(parent, folderName);
      System.out.println("creating: " + folder.getPath());
      folder.mkdirs();

      // call recursively
      createAlphabetFolders(folder, start, end, deepth-1);
    }
  }

One would call it like this:

createAlphabetFolders(new File("abctest"), 'A', 'E', 5);
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.