Skip to content

How to Create Multiple Folders With a Single Click in Windows (2 Methods)

May 10, 20253 minute read

Creating a single folder on Windows is straightforward; you simply right-click in the desired location, select “New,” and then choose “Folder.” However, if you need to create multiple folders—such as 10 or more—this method can become tedious and time-consuming. Fortunately, there are more efficient ways to accomplish this task.

In this guide, let us learn how to quickly and easily create multiple folders and subfolders in Windows 11. You can utilize either Command Prompt or youe own batch file to accomplish this in any directory. If you’re looking to create several folders at once, follow the steps outlined below.

How to Create Multiple Folders in Windows 11 with a Single Click

Method 1: Using Command Prompt

You can easily create multiple folders at once using Command Prompt in Windows 11. Here’s how to do it:

1. Open Command Prompt (Type “CMD” in the Windows Search bar and click on “Command Prompt” from the search results)

2. Next, use the cd command to change to the directory where you want to create the folders. For example, if you want to create folders in your Downloads directory, type: cd C:\Users\YourUsername\Downloads

(Replace “YourUsername” with your actual username and Downloads with your actual directory.)

3. Now, to create multiple folders at once, use the md command followed by the names of the folders you want to create, for example Folder1 Folder2 Folder3 Folder4 Folder5 Folder6 Folder7, separated by spaces.

For example: md Folder1 Folder2 Folder3 Folder4 Folder5 Folder6 Folder7

 Create Multiple Folders in Windows 11 with a Single Click
[You can replace “Folder1”, “Folder2”, etc., with any names you prefer.]

4. After executing the command, close the Command Prompt and navigate to the directory where you created the folders. You should see all the new folders there.

 Create Multiple Folders in Windows 11 with a Single Click

That’s it! You’ve successfully created multiple folders with a single command.

Second Method: Creating a Batch File

Creating several folders at once in Windows 11 can be done quickly by creating a simple batch file. Here’s how to do it:

1. First, open Notepad app on Windows 11and type the names of the folders you want to create, each on a new line.
For example:
Folder1
Folder2
Folder3

 Create Multiple Folders in Windows 11 with a Single Click

2. Next, click on File in the menu and select Save As. In the “Save as type” dropdown, choose All Files. Name your file with a .bat extension, like CreateFolders.bat.

3. Now, choose a location to save it, such as your Desktop, and click Save.

4. Next, right-click on the saved .bat file and select Edit. Add the following line at the top:
@echo off

Create Multiple Folders at Once in Windows via batch file 1
[This line ensures that the commands are executed without displaying them in the command prompt.]

5. Now, below the @echo off line, add the following command: mkdir Folder1 Folder2 Folder3

 Create Multiple Folders in Windows 11 with a Single Click
[Replace Folder1, Folder2, and Folder3 with the names of the folders you want to create.]

6. Double-click the .bat file you created. This will execute the script and create the specified folders in the same location as the batch file.

And that’s it! You can now create multiple folders in Windows 11 with just a click.

JP, your go-to how-to expert and IT specialist with two decades of experience. He shares his knowledge through blogging filled with practical tips and guidance to help you enhance your computer and smartphone skills.

Previous Article --- Next Article

No Comments

Comments (0)

Leave a Reply

Your email address will not be published. Required fields are marked *

Related Posts
Recent Articles
Tutorials
Back To Top