How to Make 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 — and it is — but there are actually several ways to do it depending on where you are and what you're doing at the time. Whether you're in Finder, on the Desktop, inside a Save dialog, or working entirely from the keyboard, Mac gives you options. Knowing which method fits your workflow can save you a surprising amount of friction over time.

Why Folder Organization Matters on macOS

Before getting into the how, it's worth noting the why. macOS doesn't force you into a rigid file structure, which means your folders are only as organized as you make them. A well-structured folder system in your home directory, iCloud Drive, or an external drive makes Spotlight search faster, backups cleaner, and day-to-day navigation far less frustrating. The habit of creating folders intentionally — rather than dumping everything onto the Desktop — pays off quickly.

Method 1: Right-Click in Finder or on the Desktop 🗂️

This is the most common approach and works in almost any context.

  1. Open Finder and navigate to the location where you want the new folder.
  2. Right-click (or Control-click) on an empty area in the window.
  3. Select New Folder from the contextual menu.
  4. A folder called "untitled folder" appears — just start typing to rename it, then press Return.

The same steps work directly on the Desktop. Right-click any empty space on the Desktop and choose New Folder. The Desktop is technically just a folder itself (located at ~/Desktop), so it behaves the same way.

Method 2: Use the Keyboard Shortcut

If you're already in Finder, the fastest method by far is the keyboard shortcut:

Shift + Command + N

This instantly creates a new folder in whichever Finder window or location is currently active, with the folder name ready to be typed. No mouse required. If you use Finder regularly, this shortcut is worth memorizing immediately.

Method 3: From the Finder Menu Bar

If you prefer the menu bar:

  1. Open Finder and navigate to your target location.
  2. Click File in the menu bar.
  3. Select New Folder.

This is the same action as the keyboard shortcut — just a few more steps. It's useful if you're not yet comfortable with shortcuts or are helping someone else navigate the interface.

Method 4: Create a Folder From Selected Files

This is a genuinely useful feature that many Mac users don't know exists.

  1. In Finder, select multiple files you want to group together.
  2. Right-click on the selection.
  3. Choose New Folder with Selection.

macOS creates a new folder, moves all the selected files into it, and puts the folder name in edit mode. This is ideal when you've already got a set of related files sitting loose in a folder and want to organize them retroactively without creating a folder, then moving everything manually.

Method 5: Inside a Save Dialog Box 🖥️

You don't have to exit your current app to create a new folder. Many macOS Save dialogs include a New Folder button:

  1. When saving a file, if the Save dialog is expanded (click the arrow next to the filename field to expand it), you'll see a folder navigation panel.
  2. Navigate to the location where you want the new folder.
  3. Click the New Folder button in the lower-left area of the dialog.
  4. Name the folder and click Create.

You can then save your file directly into the newly created folder. This is particularly useful when you're mid-workflow and realize you don't have a proper folder set up yet.

Method 6: Terminal (for Keyboard-First Users)

If you're comfortable with the command line, you can create folders using Terminal:

mkdir foldername 

To create a folder at a specific path:

mkdir ~/Documents/ProjectName 

To create nested folders in one command:

mkdir -p ~/Documents/Work/2025/Q1 

The -p flag tells Terminal to create any intermediate folders that don't yet exist. This approach is faster than any GUI method when you need to build out a folder structure quickly.

Naming and Renaming Folders

When a new folder is created, macOS puts it immediately into rename mode. Just type the name you want and press Return. If you need to rename an existing folder:

  • Click once to select it, then press Return to enter edit mode.
  • Or right-click and choose Rename.

Avoid special characters like /, :, or * in folder names — while macOS allows some of these, they can cause issues with syncing services, Terminal commands, or cross-platform compatibility.

Folder Locations and How They Affect Syncing

Where you create the folder matters — especially if you use cloud storage:

LocationSyncs Automatically?Notes
iCloud Drive✅ YesRequires iCloud Drive enabled in System Settings
Desktop (with iCloud)✅ YesOnly if Desktop & Documents syncing is turned on
Downloads folder❌ NoLocal only by default
External drive❌ NoLocal unless synced manually
Dropbox / Google Drive folder✅ YesIf the respective app is installed and running

If you're creating folders for files you need across multiple devices, the location you choose is just as important as the folder structure itself.

What Changes Between macOS Versions

The core methods above have remained consistent across recent versions of macOS — Ventura, Sonoma, and beyond. The New Folder with Selection option has been present since macOS Mojave. Terminal behavior doesn't change meaningfully between OS releases. What does vary is the visual design of Finder and Save dialogs, and whether certain iCloud features are enabled in your system settings.

How useful these methods are in practice depends on your specific habits, how your Mac is set up, and whether you're working locally or across cloud services — which makes the right approach genuinely different from one user to the next.