Steps to create multiple folders at once on Windows 10

Creating batch folders at once on Windows 10 will save you a lot of time and manipulation when you have to work with a large number of documents that need to be sorted.

On Windows 10 operating system, to create folders, you will have to use Right Click => New Folder, if you create a large number of folders, this is not the perfect way because they take too much time. time. To create multiple folders at once on Windows 10, we have many different ways and they all have similar results.

Creating multiple folders at once on Windows 10 will save you a lot of time due to reduced operations. However, to create multiple folders on the computer at the same time, you will have to use the command in CMD, NotePad, PowerShell. Below, Tipsmake will guide you how to create multiple folders at once on Windows 10.

1. Create multiple folders at once using Command Prompt

Command Prompt is known as the basic script of Windows 10 and they have been around for many years. You can create multiple folders at once through CMD.

Step 1: Open the Start Menu and enter CMD to open the Command Prompt.

Steps to create multiple folders at once on Windows 10 Picture 1Steps to create multiple folders at once on Windows 10 Picture 1

Step 2: Then, use the CD command to navigate to the location where you want to create the folder on your computer.

CD 'Path to directory creation location'

Steps to create multiple folders at once on Windows 10 Picture 2Steps to create multiple folders at once on Windows 10 Picture 2

When you successfully redirected the path, you will see that the default path is also changed. So you have succeeded in transferring the directory creation location.

Steps to create multiple folders at once on Windows 10 Picture 3Steps to create multiple folders at once on Windows 10 Picture 3

Step 3: To create multiple folders at once on CMD, you just need to use the MD command and name the folders at the back. Each folder will be separated by a space (Space).

md 'Folder name 1' 'Folder name 2'…. 'Folder name 3'

Steps to create multiple folders at once on Windows 10 Picture 4Steps to create multiple folders at once on Windows 10 Picture 4

Step 4: Finally, you just need to press Enter to run the command and they will automatically create a folder according to the name you preset.

Steps to create multiple folders at once on Windows 10 Picture 5Steps to create multiple folders at once on Windows 10 Picture 5

2. Create multiple folders at once using PowerShell

PowerShell is a more modern scripter than CMD, but their features are still comparable. You can also create multiple folders through PowerShell.

Step 1: Open MenuStart and enter Powershell to open the scripting tool.

Steps to create multiple folders at once on Windows 10 Picture 6Steps to create multiple folders at once on Windows 10 Picture 6

Step 2: Then, use the 'cd' command to move the selected location to where you need to create multiple folders on your computer.
In this case, Tipsmake will create many folders on the main screen of the computer (Desktop), with other locations you do the same.

Cd 'location to create directory'

Steps to create multiple folders at once on Windows 10 Picture 7Steps to create multiple folders at once on Windows 10 Picture 7

Step 3: Finally, you just need to use below command to create folders at once on selected location.


"Folder name 1", "Folder name 2", "Folder name 3", "Folder name 4", "Folder name 5" | %{New-Item -Name "$_" -ItemType "Directory"}

When you have completed the command, you just need to press Enter, the system will automatically initialize the folders in the correct location you have selected before.

Steps to create multiple folders at once on Windows 10 Picture 8Steps to create multiple folders at once on Windows 10 Picture 8

3. Create multiple folders at once with NotePad

Notepad allows you to create .bat files and you can use this feature to create new bibliographies quickly.

Step 1: Open MenuStart and enter NotePad to open Notepad.

Steps to create multiple folders at once on Windows 10 Picture 9Steps to create multiple folders at once on Windows 10 Picture 9

Step 2: Then enter the following command in NotePad to complete the code.

Md 'Folder name 1' 'Folder name 2' 'Folder name 3' 'Folder name 4' 'Folder name 5'

Steps to create multiple folders at once on Windows 10 Picture 10Steps to create multiple folders at once on Windows 10 Picture 10

Step 3: Next, select File => Save As… (Ctrl + Shift + S) to proceed to save the file in .bat format.

Steps to create multiple folders at once on Windows 10 Picture 11Steps to create multiple folders at once on Windows 10 Picture 11

Step 4: For the File name part, you can give it an arbitrary name but it is required to have the extension '.bat'. In addition, the Save as type section you must switch to All Files (*.*) mode.

Steps to create multiple folders at once on Windows 10 Picture 12Steps to create multiple folders at once on Windows 10 Picture 12

Step 5: Finally, you just need to move the newly created .bat file to the location where you need to create multiple folders at once and activate. Folders with predefined names in Notepad will appear. For this method, you can use it many times, just move the .bat file to different locations to create.

Steps to create multiple folders at once on Windows 10 Picture 13Steps to create multiple folders at once on Windows 10 Picture 13

In this article, Tipsmake showed you how to create multiple folders at once on your Windows 10 computer. Good luck!

5 ★ | 1 Vote