How to Create a Folder on a PC: Every Method Explained

Organizing files on a Windows PC starts with one fundamental skill: creating folders. Whether you're sorting documents, managing a project, or just trying to stop your Downloads folder from becoming a digital landfill, knowing how to create folders — and which method suits your workflow — makes a real difference in how efficiently you work.

What a Folder Actually Does

A folder (technically called a directory in computing) is a container in your file system that groups related files together. It doesn't store data itself — it holds references to files, telling the OS where to find them on your storage drive. Folders can be nested inside other folders, creating a hierarchy that mirrors how you naturally think about organizing information.

Windows uses the NTFS file system by default, which supports deeply nested folder structures, long file names, and granular permissions. That matters if you're doing anything beyond basic organization — like sharing folders across a network or setting access controls for different user accounts.

Method 1: Right-Click on the Desktop or Inside a Folder

This is the most universally known method, and it works anywhere in File Explorer or on your desktop.

  1. Navigate to the location where you want the new folder
  2. Right-click on an empty area of the screen or folder window
  3. Hover over New in the context menu
  4. Click Folder
  5. Type your folder name and press Enter

This method works on every version of Windows from XP through Windows 11. It's reliable, visible, and requires no keyboard shortcuts to remember.

Method 2: The Keyboard Shortcut 🗂️

If you spend a lot of time in File Explorer, this is the fastest approach:

  • Open File Explorer and navigate to your target location
  • Press Ctrl + Shift + N
  • A new folder appears with the name field ready to edit
  • Type the name, press Enter

This shortcut works in File Explorer on Windows 7 and later. It does not work on the desktop in older Windows versions, though it functions reliably on the desktop in Windows 10 and 11.

Method 3: Using the File Explorer Toolbar

In Windows 11, the toolbar at the top of File Explorer includes a New button (with a dropdown arrow). Clicking it reveals options including Folder. In Windows 10, the ribbon interface has a New Folder button visible in the Home tab.

This method is useful if you prefer navigating with a mouse and want a clearly labeled button rather than relying on right-click menus.

Method 4: Command Prompt (CMD)

For users comfortable with the command line, the mkdir command creates folders quickly — including multiple nested folders at once.

mkdir FolderName 

To create a folder at a specific path:

mkdir C:UsersYourNameDocumentsProjectFiles 

To create multiple nested folders in a single command:

mkdir C:Projects2024JanuaryReports 

The Command Prompt method is especially useful for IT tasks, scripting, or bulk folder creation. It's also available in PowerShell, which uses the same mkdir alias (mapped to New-Item under the hood).

Method 5: PowerShell's New-Item Command

PowerShell gives you more control than CMD, especially useful for automation:

New-Item -Path "C:ProjectsNewFolder" -ItemType Directory 

This is the foundation of folder creation in scripts, batch operations, or scheduled tasks. If you're managing folders programmatically, PowerShell is generally the more capable environment.

Naming Folders: What You Need to Know

Windows has specific rules for folder names that can catch people off guard:

Restricted CharacterReason
/ : * ? " < > |Reserved by the file system or OS
Names like CON, PRN, AUX, NULLegacy reserved device names
Trailing spaces or periodsStripped silently by the OS

Folder names can be up to 255 characters on NTFS, though extremely long paths (over 260 characters total) can cause issues with older applications that don't support the long path setting available in Windows 10 version 1607 and later.

Where You Create a Folder Changes How It Behaves 📁

Not all folder locations are equal:

  • Desktop folders are stored in your user profile (C:UsersYourNameDesktop) and are local to that account
  • OneDrive folders sync to the cloud automatically if OneDrive is active and the folder is within the synced directory
  • Network drive folders may require specific permissions and depend on your connection
  • External drive folders exist only when that drive is connected

If you create a folder in a OneDrive-synced location, it will be available on other devices signed into the same Microsoft account. If you create it outside that sync boundary, it stays local only. That distinction matters more than the creation method itself for many users.

Folder Permissions and Shared Access

On systems with multiple user accounts or in workplace environments, folder permissions control who can read, write, or modify contents. Right-clicking a folder → PropertiesSecurity tab shows the current permission assignments. Creating a folder in a shared or networked location may inherit permissions from the parent directory, or require you to set them manually.

Which Method Fits Which Situation

Different workflows naturally lean toward different methods:

  • Occasional home users tend to stick with right-click or the toolbar — visible, low-friction
  • Keyboard-heavy power users prefer Ctrl + Shift + N for speed
  • IT administrators and developers often use CMD, PowerShell, or scripts to create folder structures in bulk
  • Users managing cloud sync need to be aware of where the folder is created, not just how

The method itself takes seconds regardless of which you choose. What varies significantly is whether the folder ends up in the right place, with the right name, and with access settings that match how you actually intend to use it — and that depends on your specific setup, what you're organizing, and who else might need access.