Does anybody know if there's a keyboard shortcut equivilant to the right click -> New context menu in explorer?

Given that I suspect that there isn't, does anybody know of an explorer extension that offers something similar? It would be great to have a key combination that yielded an intellisense style dropdown (or similar) of the available file types!

link|improve this question

56% accept rate
feedback

2 Answers

up vote 6 down vote accepted

The "simple way":

Using the Keyboard Accelerator Keys

alt text

You can use the keyboard accelerator keys: Alt + F to bring up the file menu, and then W for the New menu, and then F for new folder. So your shortcut key sequence ends up being F + W + F with the Alt key held down. (Try it out)

Note: this combination depends on the language of your Windows system.


Alternative way 1:

Create your own shortcut like Ctrl + N with AutoHotKey

Script you have to hot key:

NOTE: "Display full path in title bar" must be checked in "folder options" of Windows Explorer.

^N:: WinGetActiveTitle aTitle InputBox, FolderName, Create New Folder, What would you like to name the folder?,

FileCreateDir %aTitle%\%FolderName%

MsgBox "%FolderName%" has been created in "%aTitle%". Return


Alternative way 2:

mdAxelerator v1.0 (~26k)

It enables defining the shortcut key for creating new folder and making possible to change some other "create new folder" behaviours like default new folder name. This version works only with 2k/xp/2k3 (no nt 4.0 and 9x - sorry).

There are some useful features added like auto enter into just created folder.

Download link

link|improve this answer
Does this only deal with creating new folders? What about new text files etc? – BenA Jul 27 '09 at 13:06
The accelerator keys will do for me, thanks! – BenA Jul 27 '09 at 13:11
The shortcut combo works for anything you can do with the Explorer menu – Ivo Flipse Jul 27 '09 at 13:12
feedback

Windows 7

ctrl + shift + n - create new folder

you can use keys in context menu

Create a new folder

menu-key -> N -> F

or with mouse

mouse right-click -> N -> F

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.