Clear, practical technology insights BSOD Code Lookup · Windows Error Code Lookup · Wi-Fi Troubleshooting · PC Troubleshooting Checklist

How to Create Multiple Folders at the Same Time on Windows

Learn how to create multiple folders at the same time on Windows with clear steps, practical tips, and troubleshooting advice for a smoother, more.

Table of Contents

This practical guide walks through how to create multiple folders at the same time on Windows, explains the main requirements, and highlights common issues that may appear along the way.

Create multiple Windows 10 folders at once using Command Prompt

First, open the Start menu and enter the keyword 'cmd' in the search bar of Windows Search. Then, click 'Command Prompt' from the corresponding search results.

Create multiple Windows 10 folders at once using Command Prompt — How to Create Multiple Folders at the Same Time on Windows

You can change the directory in the Command Prompt with the cd command, and switch to another location on Windows where you want to create multiple folders at the same time.

Create multiple Windows 10 folders at once using Command Prompt — How to Create Multiple Folders at the Same Time on Windows

Now, let's assume that you want to create 7 folders at the same time, corresponding to each day of a week. In this case, you can use the following command:

md sunday monday tuesday wednesday thursday friday saturday 

Create multiple Windows 10 folders at once using Command Prompt — How to Create Multiple Folders at the Same Time on Windows

Of course, you can completely replace the folder names written after the md command with the actual names you want to set.

Then, you can close the Command Prompt and navigate to the destination location you selected with the cd command above, you will see a series of new folders with the corresponding names have been created.

Create multiple Windows 10 folders at once using Command Prompt — How to Create Multiple Folders at the Same Time on Windows

Create multiple Windows 10 folders at once using PowerShell

Another method that allows you to create multiple folders at once is to use Windows PowerShell. We will continue to use the same folder names as listed above as an example.

To get started, open the Start menu and enter the keyword 'PowerShell' into the search bar of Windows Search. Then, right-click 'PowerShell' from the corresponding search results and select the 'Run as administrator' option.

Create multiple Windows 10 folders at once using PowerShell — How to Create Multiple Folders at the Same Time on Windows

The PowerShell window will immediately open to the same user folder by default. Assuming you want to create new folders in the "Documents" target directory, it can be done with the cd command. For example the following:

cd Documents

Create multiple Windows 10 folders at once using PowerShell — How to Create Multiple Folders at the Same Time on Windows

Bulk folder creation will require you to gather filenames first, and then run a specific command in a PowerShell window. Again assuming you want to create directories corresponding to each day of the week, we have the following command:

"sunday", "monday", "tuesday", "wednesday", "thursday", "friday", "saturday" | %{New-Item -Name "$_" -ItemType "Directory"}

Create multiple Windows 10 folders at once using PowerShell — How to Create Multiple Folders at the Same Time on Windows

Of course, you can still replace the folder name inside the quotes with something else you want.

After running the command, close PowerShell and open Windows Explorer to find the 'Documents' folder or the selected destination location. You will see the corresponding new folders have been created.

Create multiple Windows 10 folders at once using PowerShell — How to Create Multiple Folders at the Same Time on Windows

Key Takeaways

Use the information above as a practical reference for how to create multiple folders at the same time on Windows. Review each step carefully, confirm any requirements, and choose the option that best fits your situation.

FAQ

What does this guide explain about Create Multiple Folders at the Same Time on Windows?

It explains the main concepts, practical considerations, and useful steps related to create multiple folders at the same time on Windows without requiring advanced knowledge.

Who can benefit from learning about Create Multiple Folders at the Same Time on Windows?

This information is useful for readers who want a clear overview, practical guidance, and reliable steps related to create multiple folders at the same time on Windows.

What should I check before applying this information?

Review the requirements, confirm that your device, software, or situation matches the instructions, and back up important data before making major changes.

Discussion

Reader Comments 0

Sign in with email or Google to join the discussion.