How to Create a New Folder on Mac: Every Method Explained
Creating a new folder on a Mac is one of those tasks that seems straightforward — until you realize there are half a dozen ways to do it, each better suited to a different workflow. Whether you're organizing project files, sorting downloads, or structuring a creative archive, knowing which method fits your situation makes the difference between a smooth system and a cluttered one.
Why Folder Organization Matters on macOS
macOS gives you a lot of flexibility in how you store and access files. But that flexibility only works in your favor if your folder structure makes sense for how you work. A developer managing code repositories has different needs than a photographer sorting shoots by date, or a student keeping notes for multiple classes. The mechanics of creating a folder are simple — what varies is the strategy behind it.
Method 1: Right-Click in Finder 🗂️
The most common way to create a new folder is directly inside Finder, macOS's built-in file management app.
- Open Finder and navigate to the location where you want the folder.
- Right-click (or Control-click) on an empty area of the folder or desktop.
- Select New Folder from the context menu.
- The folder appears with the name highlighted — type your name and press Return.
This method works anywhere Finder is active: inside Documents, Downloads, external drives, or on the Desktop itself.
Method 2: The Keyboard Shortcut
If you're already inside a Finder window, the fastest route is the keyboard shortcut:
Shift + Command (⌘) + N
This instantly creates a new untitled folder in whatever directory you're currently viewing. The name field is immediately active, so you can start typing right away. For anyone who lives in the keyboard, this becomes second nature quickly.
Method 3: Using the Finder Menu Bar
If right-clicking feels awkward on certain trackpad setups, or you prefer navigating via the menu bar:
- Open a Finder window and navigate to your target location.
- Click File in the menu bar at the top of the screen.
- Select New Folder.
Same result — just a different path to get there.
Method 4: Create a Folder from Selected Files
This is one of macOS's more underrated features. If you've already got a group of related files sitting loose in a folder, you can bundle them into a new folder in one move:
- Select the files you want to group (click one, then Command-click the others, or drag to select a group).
- Right-click the selection.
- Choose New Folder with Selection.
macOS creates a folder containing all the selected files and prompts you to name it immediately. This is particularly useful when you're retroactively organizing a cluttered directory — you don't have to create the folder first, move files in, then rename it.
Method 5: Creating Folders in the Terminal
For users comfortable with the command line, the Terminal app offers another route:
mkdir foldername To create a folder at a specific path:
mkdir ~/Documents/ProjectFiles To create nested folders in one command (where none of the intermediate folders exist yet):
mkdir -p ~/Documents/Projects/2024/Q3 The -p flag tells Terminal to create any missing parent directories along the way. This approach is especially efficient when setting up project structures with multiple subfolders at once — something that would take many clicks in Finder.
Method 6: Creating Folders Directly in Save Dialogs
You don't always need to open Finder separately. When you're saving a file from any app — Pages, Photoshop, a browser download — macOS save dialogs include a New Folder button in the bottom-left corner. Click it, name the folder, and your file saves directly into it. This is useful when you realize mid-save that no appropriate folder exists yet.
Naming and Renaming Folders
Once a folder is created, renaming it is just as easy:
- Click once to select the folder, then press Return to make the name editable.
- Or double-tap the name on a trackpad (not to be confused with double-clicking, which opens the folder).
macOS folder names can include spaces, numbers, and most special characters. However, the colon (:) character is reserved by the file system and can't be used in folder names, even though the Finder will accept a forward slash visually — it stores it as a colon internally.
Folder Organization Across iCloud Drive and Local Storage 🍎
If your Mac is set up with iCloud Drive, new folders you create in the iCloud Drive section of Finder sync across your Apple devices automatically. Folders created outside iCloud Drive — in a local Documents folder that isn't iCloud-enabled, on an external drive, or in a non-synced location — stay on that device only.
This distinction matters depending on whether you're working across multiple Macs, an iPhone, or an iPad. Where you create the folder affects who (and what) can see it.
Smart Folders: A Different Kind of "Folder"
Worth knowing: macOS also offers Smart Folders, found under File > New Smart Folder in Finder. These aren't traditional folders — they don't store files. Instead, they display a live-updated view of files matching criteria you define (file type, date modified, tags, etc.). They're powerful for monitoring specific file types across your entire system without moving anything.
What Affects Your Best Approach
The right method depends on factors specific to your setup:
| Factor | How It Influences Method |
|---|---|
| Workflow style | Keyboard-heavy users favor the shortcut; mouse-first users prefer right-click |
| Number of folders needed | Bulk creation is faster in Terminal with mkdir -p |
| File organization stage | Retroactive sorting benefits from "New Folder with Selection" |
| Storage location | iCloud vs. local affects sync behavior and cross-device access |
| macOS version | Most methods are consistent across recent versions, but UI details vary |
The underlying mechanics are the same regardless — but which method saves you time, and which folder structure actually serves your workflow, depends on how you use your Mac day to day.