General Create New Folder in Windows 11


  • Staff
Folder_new_banner.png

This tutorial will show you different ways to create a new folder in Windows 11.

A folder is a location where you can store your files. You can create any number of folders and have folders inside other folders (subfolders).

Reference:


Contents





Option One

Create New Folder using Keyboard Shortcut


1 Navigate to the location where you want to create a new folder on your Desktop (Win+D) or in File Explorer (Win+E).

2 Press the Ctrl + Shift + N keys.

3 Type a name you want for the "New Folder", and press Enter or click/tap somewhere else to apply. (see screenshot below)

New_folder_name.png





Option Two

Create New Folder from File Explorer Command Bar


1 Open File Explorer (Win+E).

2 Navigate to the location where you want to create a new folder.

3 Click/tap on New on the command bar, and click/tap on Folder in the drop menu. (see screenshot below)

New_folder_File_Explorer_command_bar-1.png

4 Type a name you want for the "New Folder", and press Enter or click/tap somewhere else to apply. (see screenshot below)

New_folder_File_Explorer_command_bar-2.png




Option Three

Create New Folder from New Context Menu


1 Navigate to the location where you want to create a new folder on your Desktop (Win+D) or in File Explorer (Win+E).

2 Right click on the background of the Desktop or File Explorer window, click/tap on New, and click/tap on Folder. (see screenshot below)

New_folder_context_menu.png

3 Type a name you want for the "New Folder", and press Enter or click/tap somewhere else to apply. (see screenshot below)

New_folder_name.png




Option Four

Create New Folder in "Save As" Dialog


This option is for creating a new folder while saving something using the File > Save As type menu.

You can also use Option One and Option Three to create a new folder in a Save As dialog.


1 Navigate to the location where you want to create a new folder in the Save As dialog.

2 Click/tap on New folder on the toolbar. (see screenshot below)

New_folder_Save-As_dialog-1.png

3 Type a name you want for the "New Folder", and press Enter or click/tap somewhere else to apply. (see screenshot below)

New_folder_Save-As_dialog-2.png




Option Five

Create New Folder in "Export Registry File" Dialog


This option is for creating a new folder while exporting a registry key as a REG file in Registry Editor (regedit.exe).

You can also use Option One and Option Three to create a new folder in a Export Registry File dialog.


1 Navigate to the location where you want to create a new folder in the Export Registry File dialog.

2 Click/tap on the Create New folder icon on the toolbar. (see screenshot below)

New_folder_Export_Registry_File_dialog-1.png

3 Type a name you want for the "New Folder", and press Enter or click/tap somewhere else to apply. (see screenshot below)

New_folder_Export_Registry_File_dialog-2.png




Option Six

Create New Folder in PowerShell



1 Open Windows Terminal, and select Windows PowerShell.

2 Type the command below into Windows Terminal, and press Enter. (see screenshot below)

New-Item -Path "Full path to create New Folder\New Folder name" -ItemType "directory" -Force

Substitute Full path to create New Folder in the command above with the actual full path (ex: "C:\Users\Brink\Desktop") of the location where you want to create a new folder at.

Substitute New Folder name in the command above with the actual name you want for the new folder.

For example: New-Item -Path "C:\Users\Brink\Desktop\New Folder" -ItemType "directory" -Force


3 When finished, you can close Windows Terminal if you like.

New_folder_PowerShell.png





Option Seven

Create New Folder in Command Prompt



1 Open Windows Terminal, and select either Windows PowerShell or Command Prompt.

2 Type either command below into Windows Terminal, and press Enter. (see screenshot below)

md "Full path to create New Folder\New Folder name"

OR​

mkdir "Full path to create New Folder\New Folder name"

Substitute Full path to create New Folder in the command above with the actual full path (ex: "C:\Users\Brink\Desktop") of the location where you want to create a new folder at.

Substitute New Folder name in the command above with the actual name you want for the new folder.

For example: md "C:\Users\Brink\Desktop\New Folder"


3 When finished, you can close Windows Terminal if you like.

New_folder_command.png





Option Eight

Create More than One New Folder at Once in Command Prompt



1 Open Windows Terminal, and select Command Prompt.

2 Type either command below into Windows Terminal, and press Enter. (see screenshot below)

md "Full path to create New Folder1\New Folder1 name" "Full path to create New Folder2\New Folder2 name"

OR​

mkdir "Full path to create New Folder1\New Folder1 name" "Full path to create New Folder2\New Folder2 name"

Substitute Full path to create New Folder# in the command above with the actual full path (ex: "C:\Users\Brink\Desktop") of the location where you want to create a new folder at.

Substitute New Folder# name in the command above with the actual name you want for the new folder.

You can add as many "Full path to create New Folder#\New Folder# name" sections to the command for how many new folders you want to create at once.

For example: md "C:\Users\Brink\Desktop\New Folder" "C:\Users\Brink\Desktop\New Folder2"


3 When finished, you can close Windows Terminal if you like.

New_folders_command.png



That's it,
Shawn Brink


 

Attachments

  • Folder_new.png
    Folder_new.png
    6 KB · Views: 9
Last edited:
1.png
 

My Computer

System One

  • OS
    Microsoft Windows 11 Home
    Computer type
    PC/Desktop
    Manufacturer/Model
    MSI MS-7D98
    CPU
    Intel Core i5-13490F
    Motherboard
    MSI B760 GAMING PLUS WIFI
    Memory
    2 x 16 Patriot Memory (PDP Systems) PSD516G560081
    Graphics Card(s)
    GIGABYTE GeForce RTX 4070 WINDFORCE OC 12G (GV-N4070WF3OC-12GD)
    Sound Card
    Bluetooth Аудио
    Monitor(s) Displays
    INNOCN 15K1F
    Screen Resolution
    1920 x 1080
    Hard Drives
    WD_BLACK SN770 250GB
    KINGSTON SNV2S1000G (ELFK0S.6)
    PSU
    Thermaltake Toughpower GF3 1000W
    Case
    CG560 - DeepCool
    Cooling
    ID-COOLING SE-224-XTS / 2 x 140Mm Fan - rear and top; 3 x 120Mm - front
    Keyboard
    Corsair K70 RGB TKL
    Mouse
    Corsair KATAR PRO XT
    Internet Speed
    100 Mbps
    Browser
    Firefox
    Antivirus
    Microsoft Defender Antivirus
    Other Info
    https://www.userbenchmark.com/UserRun/66553205
PS has a native mkdir command, which is based on New-Item.
Code:
PS C:\Users\GARLIN> Get-Alias md

CommandType     Name                                               Version    Source                                                                                                                                                                                                                                                                      
-----------     ----                                               -------    ------                                                                                                                                                                                                                                                                      
Alias           md -> mkdir                                                                                                                                                                                                                                                                                                                               

PS C:\Users\GARLIN\Downloads> mkdir "New Folder" -WhatIf
What if: Performing the operation "Create Directory" on target "Destination: C:\Users\GARLIN\Downloads\New Folder".
 

My Computer

System One

  • OS
    Windows 7

Latest Support Threads

Back
Top Bottom