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

Whether you're organizing a cluttered Desktop or building a clean project structure in Finder, creating folders on a Mac is something you'll do constantly — and there are more ways to do it than most users realize. Knowing which method suits your workflow can save real time.

The Core Ways to Create a Folder on a Mac

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

This is the most straightforward approach for most users.

  1. Navigate to the location where you want the new folder — either on your Desktop or inside a Finder window.
  2. Right-click (or Control-click) on any empty area.
  3. Select "New Folder" from the context menu.
  4. The folder appears with the name highlighted — type your desired name and press Return.

If you're using a Magic Mouse or trackpad, make sure Secondary Click is enabled in System Settings → Mouse (or Trackpad).

Method 2: Keyboard Shortcut 📁

The fastest method if your hands are already on the keyboard:

  • Shift + Command + N

This works anywhere in Finder — inside a folder window or on the Desktop. The new folder appears immediately, ready to be named.

Method 3: Finder Menu Bar

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

This method behaves identically to right-clicking — useful if you're not sure whether your right-click is properly configured or you prefer menu-driven navigation.

Method 4: Create a Folder from Selected Files

This is one of macOS's most underused features. If you have a group of files you want to organize together:

  1. Select multiple files (hold Command and click each one, or drag to select).
  2. Right-click the selection.
  3. Choose "New Folder with Selection".

macOS creates a new folder containing all selected files instantly. The folder name defaults to "New Folder With Items" — rename it immediately. This is a genuine time-saver when retrospectively organizing an existing pile of files.

Method 5: Terminal (Command Line)

For users comfortable with the command line, the mkdir command creates folders with precision:

mkdir ~/Desktop/MyNewFolder 

You can also create nested folders in one command using the -p flag:

mkdir -p ~/Documents/Projects/2024/ClientWork 

This creates the entire folder path even if parent directories don't yet exist — something Finder can't do in a single step.

Naming and Renaming Folders

After creation, the folder name is automatically highlighted for editing. If you miss that window:

  • Click once to select the folder, then press Return to enter rename mode.
  • Type the new name and press Return again to confirm.

macOS folder naming rules:

  • Names can include spaces, numbers, and most special characters.
  • The colon ( : ) is the one character macOS forbids in folder names (it's used internally as a path separator).
  • Names are case-preserving but not case-sensitive by default on most Mac storage volumes formatted with APFS or HFS+.

Where You Can Create Folders

Folders can be created in most locations on macOS, but a few variables affect what's possible:

LocationCan Create Folders?Notes
Desktop✅ YesSyncs to iCloud if Desktop sync is on
Documents / Downloads✅ YesStandard user directories
iCloud Drive✅ YesRequires internet for sync across devices
System folders (e.g., /Library)⚠️ RestrictedRequires admin permissions or SIP disabled
External drives✅ YesDepends on drive format (read-only NTFS won't work)
Network drives✅ UsuallyDepends on server permissions

How iCloud Drive Affects Folder Behavior 🌐

If you have iCloud Drive enabled — particularly with Desktop & Documents Folders synced — any folder you create in those locations automatically syncs across all your Apple devices signed into the same Apple ID. This is useful for continuity between a MacBook and a Mac desktop, but it also means:

  • Folder creation requires an active internet connection to propagate changes.
  • Storage used counts against your iCloud plan.
  • Folders created offline will sync once connectivity is restored.

Users who work primarily offline or with sensitive data sometimes prefer to store organized folder structures in locations outside iCloud sync paths.

Variables That Affect Your Folder Strategy

How you structure folders on a Mac depends heavily on factors specific to your situation:

macOS version: The interface for System Settings (previously System Preferences) changed significantly with macOS Ventura (13). Some menu paths and iCloud settings look different depending on whether you're running Ventura, Sonoma, or an older release.

Storage type: Macs with APFS-formatted internal drives support features like cloneable folders and near-instant copies. External drives formatted as exFAT or FAT32 lack some of these capabilities and have different filename restrictions.

User permissions: On a managed Mac (a work or school device enrolled in MDM), certain directories may be locked or restricted by IT policy, regardless of your macOS version.

Workflow complexity: A basic Desktop cleanup needs nothing beyond right-click and rename. A developer managing dozens of nested project directories will get significantly more value from Terminal's mkdir -p or a dedicated file management tool.

iCloud vs. local storage preference: Your choice of where to keep folders — iCloud Drive, a local user directory, or an external drive — determines sync behavior, accessibility from other devices, and backup coverage under Time Machine.

The right folder structure isn't universal. A photographer organizing thousands of RAW files has entirely different needs than someone filing a handful of PDFs — and the methods that serve each workflow best look quite different.