How to Make a New Folder in Windows: Every Method Explained

Creating a new folder in Windows sounds simple — and it is — but there are actually five or six different ways to do it depending on where you are, what you're doing, and how you prefer to work. Knowing all your options means you're never stuck hunting through menus when you just need to organize a few files quickly.

Why Folder Organization Matters More Than You Think

Before diving into the how, it's worth understanding what's actually happening when you create a folder. In Windows, a folder (formally called a directory) is a container in the file system that groups files together under a single path. Every folder you create gets its own location in the directory tree — something like C:UsersYourNameDocumentsProjectFiles.

Good folder structure affects more than just tidiness. It influences how quickly Windows can index your files for search, how backup software handles your data, and how easy it is to share or move files between drives or devices. A flat structure with hundreds of loose files in one location will slow down both you and your system over time.

Method 1: Right-Click in File Explorer (The Most Common Way)

This is what most people do instinctively, and it works reliably across all modern versions of Windows.

  1. Open File Explorer (the folder icon in your taskbar, or press Win + E)
  2. Navigate to the location where you want the new folder
  3. Right-click on an empty area in the file pane
  4. Select NewFolder
  5. Type your folder name and press Enter

One thing to watch: make sure you're right-clicking on empty space, not on an existing file or folder. If you right-click on a file, the context menu changes and the New option won't appear — or will behave differently.

This method works on the Desktop too. Right-click any empty space on your desktop and follow the same steps.

Method 2: The Toolbar Button in File Explorer 🗂️

In Windows 11, Microsoft added a dedicated New folder button directly in the File Explorer toolbar — it's the folder icon with a small plus symbol near the top left of the window.

  • Click it once and a new folder appears instantly in your current location
  • Rename it immediately by typing

In Windows 10, the equivalent lives in the Home tab of the File Explorer ribbon. Click HomeNew folder.

This method is fast if your hands are already on the mouse and you're actively browsing files.

Method 3: Keyboard Shortcut (Fastest for Power Users)

If you're already inside File Explorer and want to create a folder without touching the mouse:

Ctrl + Shift + N

This is the universal "new folder" shortcut in Windows 10 and Windows 11. Press it and a new folder appears immediately in your current directory, ready to be renamed. It's by far the quickest method once it becomes muscle memory.

Worth noting: this shortcut only works inside File Explorer. It won't trigger a new folder if you're in a browser, a document, or another application window.

Method 4: Using the Command Prompt

For users who work in the terminal — or who need to create folders as part of a script or automated process — the Command Prompt (or PowerShell) is the right tool.

In Command Prompt:

mkdir FolderName 

or the longer form:

md FolderName 

In PowerShell:

New-Item -ItemType Directory -Name "FolderName" 

You can also create nested folders in a single command. For example:

mkdir Projects2024Reports 

This creates the full path at once, even if the intermediate folders don't exist yet. That's something you can't do with a single right-click in File Explorer.

Method 5: From a Save Dialog Inside an App

This one surprises people. You don't have to close your application, open File Explorer, create a folder, and come back. Most Windows apps let you create folders from within the Save As dialog.

  1. In any application, press Ctrl + S or go to File → Save As
  2. Navigate to where you want the new folder to live
  3. Click the New folder button in the Save dialog toolbar (it looks like a folder with a star or plus)
  4. Name it and press Enter
  5. Double-click the new folder to open it, then save your file inside

This is especially useful when you're mid-project and realize you need a new organizational structure before saving a document for the first time.

Variables That Affect Which Method Works Best for You

FactorWhat It Changes
Windows versionWindows 11 toolbar differs from Windows 10 ribbon layout
Keyboard vs. mouse preferenceShortcut vs. right-click approach
Frequency of usePower users benefit more from learning Ctrl+Shift+N
Scripting or automation needsCommand line methods are the only viable option
LocationDesktop, File Explorer, and Save dialogs each have slightly different interfaces

A Note on Naming Folders in Windows

Windows folder names can't contain these characters: / : * ? " < > |

Names are also not case-sensitive by default — Windows treats ProjectFiles and projectfiles as the same folder name in the same location. If you're working with files that will also be used on macOS or Linux systems (which are case-sensitive), this difference can cause unexpected behavior when syncing or transferring files.

Folder names can include spaces, but if you're using the command line, you'll need to wrap names with spaces in quotation marks: mkdir "My New Folder".

🔍 Which Method Fits Your Workflow?

The right approach depends on how you tend to work, where you're creating the folder, and what version of Windows you're running. A developer creating nested project directories has different needs than someone organizing photos in a home folder. Someone who rarely leaves the keyboard will get more value from the shortcut than from memorizing ribbon button locations.

Each method produces exactly the same result — a new, empty folder at the specified path — but the path to getting there varies enough that your own habits and setup are what determine which one actually saves you time.