Batch Folder Creator: 8 Best to Use in 2023
Create Multiple Folders In a File Manager
There’s loads of free third party file management tools around that are more advanced than Windows Explorer. Some file managers have the ability to also create several folders at once.
5. FreeCommander XE
Creating multiple folders in FreeCommander XE is quite easy. Navigate to the root folder you want to start in then press F7 (or right click > New > Folder). In the new folder dialog, enter all the folder names separating each with a vertical line, also known as pipe (Shift+\).
Entering subfolder paths is accepted as well so you can also type something like:
MyMusic\Favs|Work|Play|Games\Downloads
FreeCommander XE has both portable and installer versions although the 64-bit version is for donators only. Do note that the XE version has this ability but not the older FreeCommander 2009.
6. XYplorer Free
The discontinued but still useful XYplorer Free is a better choice when you want to create a lot of new folders at once. Go to the root folder where you want to start the folder creation and right click > New > New Folders. This opens up a window where you enter each folder with an optional subfolder on each new line.
The advantage with XYplorer over similar free file managers is you can copy and paste whole folder lists into the window from text files or other applications.
Multi Commander is another free file manager that can batch create new folders although it requires a semicolon (;) instead of pipe (|) to separate names. Other free file managers like Q-Dir, Explorer++, and NexusFile don’t appear to have the create multiple folders ability.
7. Create Multiple Folders With Excel and a VBA Macro
Using a combination of Microsoft Excel and the Visual Basic for Applications (VBA) scripting language it’s a relatively simple task to take a list of folder names and create them in one move. All you need is Excel itself and the VBA macro script.
1. Download the VBA macro text file, open it in Notepad and copy the contents.
2. Launch Excel and load the workbook with the list of folder names. Press Alt+F11 to open the Visual Basic Editor.
3. Go to the Insert menu > Module. Right click in the new module window that’s opened up and paste in the VBA macro text. Close the Visual Basic Editor.
4. To launch a macro press Alt+F8 or go to the View tab > Macros. There are two macro scripts available. Select which one you want to use and press Run.
The CreateDirs macro will read the root path to create the folders in cell A1 and then create the folders found in cells A2 onwards. For example cell A3 below will be C:\Users\Raymondcc\Desktop\Raymondcc\Blog and etc. Make sure to insert the path to create the folders into cell A1 or they will not be created in the correct location.
The CreateDirsFullPaths macro takes a list of folder names with each having its own full path. Cells A1 to A1000 will create a folder named with the exact path specified.
5. To keep the workbook and the macro for future use save it as an “Excel Macro-Enabled workbook (*.XLSM)”. Depending on your Excel security settings you might have to accept a security warning to enable the macro when reloading the workbook.
If you need to create more than 1000 folders or use a different cell range, the VBA script can easily be edited to accommodate. You can also configure a keyboard shortcut in the Macro window options so the folders can be created by simply pressing a key Ctrl+[key] combination.
8. Use a Batch Script to Create Multiple Folders
Using a simple batch script to create a number of folders is very easy and doesn’t require special knowledge or external tools. All you have to do is create a text file with a list of all the folders and relative paths with the command MD at the start of each line. MD is the same as the mkdir command line tool and is used in the background of some third party folder creation tools.
Create an empty text file and simply add “MD ” then the relative path of each folder on a line.
Save as a .BAT batch file and copy it to the root folder where the new folders are to be created, then run it. The full path to each folder can also be used so the script can be run from any location. Alternatively, insert a new line at the beginning of the batch and CD to the root folder, e.g. “cd D:\MyFiles”.
Create Multiple Subfolders Inside Multiple Folders
This option is quite useful if you have several base folders and want to create the same folder structure inside each one. For instance, you have 50 folders and want to place a “Work” folder and a “Downloads\Docs” folder in all of them.
Set folderspath=%~dp0
For /D %%F in (“%folderspath%\*”) do md “%%F\Work\” “%%F\Downloads\Docs\”
Copy the above text to your favorite text editor, edit the paths after the md command (leave %%F\ in there), and then save it as a .BAT file. Drop the batch file into the base folder and execute it.
You can add or remove folder paths from the script, just make sure to leave a space between each path and use quotes to avoid issues. For ease of use, download the batch script from below and edit the paths yourself in a text editor. More advanced users can also filter in/out specific folders by editing the * wildcard portion of the script.
Download SubfoldersInsideFolders.bat Script
Create a Batch File From a Text File List
If you already have a list of folders in a text file, it’s possible to add the md command to each line automatically turning it into a batch file. You will need a text editor that has a replace option and accepts regular expressions. Windows Notepad can’t do this but others like Notepad++ and Notepad2 can. We’ll use Notepad++.
Load the text file into the editor and go to Search > Replace (Ctrl+H). Select Regular expression as the search mode and for the find string, enter ^ (Shift+6). For the replace with string enter “md ” without quotes. Press Replace All and md will be inserted at the start of every line. Save the file as a .BAT and run it.
Tip: Don’t forget that folders with a space in the name have to be enclosed in quotes. Failure to do that will give you separate folders named after each word. If you have some spaced names in your text file and they aren’t quoted, the safest option is adding quotes to all folder names in the list.
To do that use the same replace text window but add a quote to replace with (md “). Then perform a new replace using $ as the search string and a single quote (“) as the replace with. Make sure the regular expression option is enabled before you run the replace.
Is there any way of automatically adding existing ‘default’ Files to the created Folders or Sub-Folders?
Folder1
Folder1/Subfolder_1
Folder1/Subfolder_2
Folder1/Subfolder_3
Folder1/Subfolder_4
Folder1/File_1.docx
Folder1/File_2.xlsx
Currently I construct the Folder & Sub-Folder strings in Excel. These are concatenated, and the resulting list is pasted into a txt file. Folders are then created using the excellent ‘Txt 2 Folders’. None of the apps seem to offer ‘Add Files’. Maybe using a modified version of the Excel VBA Script? or perhaps a Notepad++ script?
How to create a single or multiple subfolder into multiple selected (parent) folders?
Please, update your article and teach us how to create multiple subfolders into multiple selected folders. That’s would be awesome!
1. Create a .txt file and insert the folowing comands into it.
@echo off
for %%i in (*) do (
if not “%%~ni” == “organize” (
md “%%~ni” && move “%%~i” “%%~ni”
)
)
2. replace the .txt extension with .bat
3. place the .bat file into a folder with files for wich you wish to create same name folders.
4. run the .bat. It will create a folder for every file and move each file in their new respective folders.
WOW GRACIAS THANKS Thank you for this
Prog CreateFolderTree @:
users.adam.com.au/paulwh/Misc.html
similar and also portable
Great program. Easy to use and portable. Thank you for this gem.
I so could have done with this a couple of years ago when sorting my own music out. Different ripper programs, different locations and different names… it was becoming quite the effort to find them. This is going straight on my utilities USB stick.