How to Create a New Folder on a Mac: Every Method Explained
Creating a new folder on a Mac is one of those tasks that looks simple on the surface — but once you realize there are at least five different ways to do it, each better suited to a different situation, it's worth knowing all of them. Whether you're organizing files in Finder, working from the desktop, or keeping your hands on the keyboard, macOS gives you options.
Why Folder Organization Matters on macOS
Before diving into the how, it's worth understanding what folders actually do in macOS. A folder (technically a directory in the file system) is a container that groups files together under a shared location path. macOS uses the APFS (Apple File System) by default on modern Macs, which handles folders efficiently and supports features like snapshots and fast metadata operations.
Good folder structure affects more than tidiness — it influences how quickly Spotlight can surface your files, how iCloud Drive syncs your content, and how smoothly apps like Photos, Logic Pro, or Final Cut Pro can locate project assets.
Method 1: Right-Click in Finder or on the Desktop 🖱️
This is the most widely used method, and it works in two contexts:
In a Finder window:
- Open Finder and navigate to the location where you want the new folder
- Right-click (or Control-click) on an empty area of the folder contents
- Select "New Folder" from the contextual menu
- Type your folder name and press Return
On the Desktop:
- Right-click on an empty area of the desktop
- Select "New Folder"
- Name it and press Return
The desktop is technically a folder itself — located at ~/Desktop — so folders created here behave identically to those created anywhere else in your file system.
Method 2: Use the Finder Menu Bar
If you're already in Finder, the menu bar offers a reliable fallback:
- Open Finder and navigate to your target location
- Click File in the menu bar
- Select New Folder
- Name the folder and press Return
This method is particularly useful when right-clicking doesn't feel natural or when you're using a Magic Keyboard without a secondary click configured.
Method 3: Keyboard Shortcut — The Fastest Way ⌨️
For anyone who lives in Finder and values speed, the keyboard shortcut is the go-to:
Shift + Command (⌘) + N
This instantly creates a new untitled folder in whatever Finder window or location is currently active. The name field is automatically selected, so you can start typing the folder name immediately and press Return to confirm.
This shortcut works both inside Finder windows and on the desktop, as long as Finder is the active application.
Method 4: Create a Folder from Selected Files
This is one of macOS's more underused features, and it's genuinely useful when you're retroactively organizing files:
- In Finder, select two or more files you want to group together
- Right-click the selection
- Choose "New Folder with Selection"
macOS creates a new folder containing all the selected files and prompts you to name it. This is significantly faster than creating a folder first, then dragging files in — especially when you're tidying up a cluttered Downloads folder or grouping project assets.
Method 5: Create a Folder in the Terminal
For users comfortable with the command line, the Terminal app gives you precise control:
- Open Terminal (found in Applications > Utilities, or via Spotlight)
- Navigate to your desired location using
cd(e.g.,cd ~/Documents) - Type
mkdir FolderNameand press Return
You can also create nested folders in one command using the -p flag:
mkdir -p Projects/2024/Design This creates the full path — Projects, then 2024 inside it, then Design inside that — even if none of those folders exist yet. Terminal-based folder creation is especially useful in automation scripts or when managing large directory structures.
Where Your Folders Actually Live: Key macOS Locations
| Location | Path | Typical Use |
|---|---|---|
| Desktop | ~/Desktop | Quick-access temporary files |
| Documents | ~/Documents | Personal and work files |
| Downloads | ~/Downloads | Browser and app downloads |
| iCloud Drive | ~/Library/Mobile Documents/com~apple~CloudDocs | Cloud-synced files |
| External drives | /Volumes/DriveName | Backups, large media |
Understanding these paths matters if you're deciding whether a folder should be local-only or iCloud-synced. Folders created inside ~/Desktop and ~/Documents will sync automatically if iCloud Drive is enabled and the "Desktop & Documents Folders" option is turned on in System Settings > Apple ID > iCloud.
Naming Folders: What to Know
macOS file names are case-insensitive but case-preserving on APFS volumes — meaning Photos and photos point to the same folder, but macOS will remember whichever capitalization you used. Folder names can include spaces, but if you're using Terminal frequently, names without spaces (or with underscores) are easier to reference.
Characters to avoid in folder names: : and / — these have specific meanings in file paths and can cause issues in certain apps or scripts.
The Variable That Changes Everything
All five methods create folders the same way technically — but which one belongs in your workflow depends on factors specific to you. How much of your time is spent in Finder vs. the terminal? Are you organizing iCloud-synced content or local project files? Do you prefer mouse-driven workflows or keyboard shortcuts?
A developer running automated scripts will reach for Terminal. A student sorting lecture notes will probably right-click. Someone reorganizing a folder full of downloaded PDFs will find the "New Folder with Selection" approach a revelation. 🗂️
The method that's fastest and most natural varies considerably based on your Mac habits, your macOS version (some contextual menu options have shifted between Monterey, Ventura, and Sonoma), and how your Finder preferences are configured.