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

Creating a new folder on Windows sounds simple — and usually it is. But Windows gives you more than one way to do it, and which method suits you best depends on where you are, what you're doing, and how you like to work. Here's a clear breakdown of every reliable method, plus what to know about organizing folders effectively.

Why Folders Still Matter in a Cloud-First World

Even as cloud storage and search tools have improved, folder structure remains one of the most practical ways to keep files manageable. A well-organized folder tree means faster navigation, less duplicate saving, and fewer "where did I put that?" moments. Windows has supported user-created folders since its earliest versions, and the core methods have stayed consistent — though a few things shifted with Windows 11.

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

This is the method most Windows users already know, and it works reliably across Windows 10 and Windows 11.

  1. Open File Explorer (press Win + E or click the folder icon in your taskbar)
  2. Navigate to the location where you want the new folder
  3. Right-click on an empty area of the folder or drive
  4. Hover over New in the context menu
  5. Click Folder
  6. Type your folder name and press Enter

The folder name defaults to New Folder — you can rename it immediately by typing, or rename it later by pressing F2 while it's selected.

One thing worth knowing: if you right-click on a file instead of empty space, you may not see the New option, or it may behave differently. Make sure you're clicking on blank space within the window.

Method 2: Keyboard Shortcut — The Fastest Route 🚀

If your hands are already on the keyboard, this is the quickest method available:

  • Navigate to the target location in File Explorer
  • Press Ctrl + Shift + N

A new folder appears instantly, ready for you to type a name. This shortcut works in File Explorer on both Windows 10 and Windows 11, and it's the preferred method for users who move quickly through their filesystem.

It does not work on the Desktop while another window is active — you'll need to click the Desktop first to give it focus.

Method 3: Using the Toolbar in File Explorer

Windows 11 moved several common actions into a top toolbar ribbon that replaced the older-style ribbon from Windows 10. The steps differ slightly between versions.

On Windows 11:

  1. Open File Explorer and navigate to your target location
  2. Click the New button in the top toolbar (it has a small dropdown arrow)
  3. Select Folder from the dropdown

On Windows 10:

  1. Open File Explorer
  2. In the Home tab of the ribbon at the top, click New Folder

Both approaches produce the same result — a new unnamed folder ready to be titled.

Method 4: From the Desktop

The Desktop is itself a folder (stored under your user profile), so creating a folder there follows the same right-click logic:

  1. Right-click on any empty area of your Desktop
  2. Hover over New
  3. Click Folder
  4. Name the folder and press Enter

The Ctrl + Shift + N shortcut also works here, as long as the Desktop has focus (no other windows open on top of it).

Method 5: Command Prompt or PowerShell

For users comfortable with the command line, this method is fast and scriptable — useful if you need to create multiple folders at once or automate folder creation.

Using Command Prompt:

mkdir FolderName 

Using PowerShell:

New-Item -ItemType Directory -Name "FolderName" 

You can also specify a full path:

mkdir "C:UsersYourNameDocumentsProjectFiles" 

This approach is particularly practical for IT professionals, developers, or anyone managing large numbers of folders as part of a workflow. Creating a dozen nested folders with one command is significantly faster than doing it through point-and-click.

Naming Your Folders: What to Know

Windows folder names have a few hard rules and some softer best practices:

RuleDetail
Forbidden characters / : * ? " < > | cannot be used
Maximum name length255 characters (practical limit is much shorter)
Case sensitivityWindows is not case-sensitive by default — Documents and documents are treated as the same
Spaces allowedYes, though command-line tools require quotes around names with spaces

Folder names that are clear and consistent tend to age better — especially if files are shared with others or synced to cloud storage services like OneDrive, which has its own naming restrictions.

When You Can't Create a New Folder

A few situations block folder creation:

  • Insufficient permissions — You may not have write access to a system directory or a folder owned by another user account
  • Read-only drives — Some external drives or network shares are mounted in read-only mode
  • Protected system folders — Windows restricts direct modification of folders like System32 even for administrator accounts
  • Full storage — Rare, but a completely full drive can prevent folder creation

If right-clicking doesn't show the New option or the option is greyed out, permissions are the most likely explanation. Checking the folder's Properties > Security tab can confirm whether your user account has write access.

The Variables That Shape Your Experience 🗂️

The "right" method for creating a folder isn't universal — it shifts depending on several factors:

  • How often you create folders — Power users often default to keyboard shortcuts; occasional users tend to prefer right-clicking
  • Which version of Windows you're running — The toolbar layout differs between Windows 10 and 11
  • Whether you work from the command line — Developers and sysadmins may find mkdir faster and more flexible
  • Your file system and permissions setup — Network drives, shared folders, and managed corporate environments can restrict what's possible
  • Cloud sync behavior — Folders created inside a OneDrive or Google Drive sync folder may behave slightly differently depending on sync settings

The mechanics are the same across most setups, but how smooth or limited the experience feels depends on your specific environment, account type, and workflow.