How can I create a new folder within a nested folder hierarchy using Finder?

13

6

Here's a thing that's been annoying me for a long time: Using OS X 10.6, when you navigate through folders, expanding them to see their content, you sometimes want to create a new folder at the bottom of the file hierarchy.

Consider this example:

some
└── nested
    └── folder

Now, having selected "folder", pressing N results in the new folder being created at the top of the visible hierarchy, i.e. the currently open Finder element (which in my case is "test"):

├── some
│   └── nested
│       └── folder
└── untitled folder

This is not what I need. I will manually have to move the "untitled folder" to its target parent, which is hard to do if you 1) don't want use your mouse, 2) can't CutPaste a folder like in Windows and 3) the current folder contains a lot of elements.

What I need is:

some
└── nested
    └── folder
        └── untitled folder

The new folder should be created in the folder that I currently selected (i.e. "folder").

Note that:

  • I want this to be done with a keyboard shortcut. I don't use the mouse that often.
  • I don't want to use any other Finder view (e.g. Columns)

Is there any way this could be achieved?


I know the Automator action "New Folder", but it copies the selected Finder elements into the target folder, and it's inserted at the wrong level. For example, selecting "folder", the result will be something like:

└── some
    └── nested
        ├── folder
        └── untitled folder
            └── folder

slhck

Posted 2011-07-13T13:01:55.403

Reputation: 182 472

2Right on! It's ridiculous that the folder gets created at the top of the tree instead of under the selected folder! I'm on yosemite and it still does this. – Andy Arismendi – 2015-01-20T18:34:38.327

Answers

4

One (very unrecommended) option would be to assign a shortcut to an AppleScript like this. There's an open bug in 10.7 that makes the script more or less unusable.

tell application "Finder"
    if insertion location as alias is desktop as alias or current view of Finder window 1 is in {icon view, column view} or selection is {} then
        tell application "System Events" to tell process "Finder"
            click menu item "New Folder" of menu 1 of menu bar item "File" of menu bar 1
        end tell
        return
    end if
    tell application "System Events" to key code 124 -- right arrow
    set p to item 1 of (get selection)
    try
        set f to make new folder at p
    on error
        set f to make new folder at container of p
    end try
    set selection to f
end tell
tell application "System Events" to keystroke return

Lri

Posted 2011-07-13T13:01:55.403

Reputation: 34 501

1

Your script had this result, but I changed it to do what I need (minor thing). Works as expected though :)

– slhck – 2011-07-13T15:04:55.750

1I modified the script so that it tries to create the new folder inside item 1 of (get selection) first. – Lri – 2011-07-13T15:18:10.703

3

Open the folder where you want to create a new folder with ⌘O and then create what you want.

Max

Posted 2011-07-13T13:01:55.403

Reputation: 31

2

O is nice to get started.

N will create the new folder.

[ will bring you back.

This is not optimal but at least you do not have to use the mouse.

Thomas

Posted 2011-07-13T13:01:55.403

Reputation: 131

Yes, that will work but only if you have a folder selected. If you've already selected a file within that folder, the first shortcut will just open that file. – RusI – 2015-08-30T07:28:49.437

1

I'm replacing my original incorrect post with this...

It took me ages to understand what was going on with this.

The trick to understanding what is going on here is to note the name of the folder in the title bar. In macOS, whenever you create a folder, that is the folder that the new folder will be created under.

That is why Thomas' post works, or in column mode as you click each folder the folder in the title bar changes and Command + Shift + N will create the folder correctly.

Bryon

Posted 2011-07-13T13:01:55.403

Reputation: 111