Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there a Create New Folder in current project keyboard shortcut for Visual Studio 2008?

I'm using Resharper keyboard shortcuts all the time and it helps a lot in everyday development.

But i constantly need to create new folders in my Visual Studio projects so this means -> move the mouse from keyboard, use the mouse, right-click the desired project, choose menu Add->New Folder, type folder name etc.

It's tedious!

Is there ANY way to do this via keyboard shortcut - to press keyboard combination, that will at once create folder in current project, and place cursor into TextBox to enter folder name and slam that Enter key and then continue?

like image 944
Roboblob Avatar asked Jul 11 '09 12:07

Roboblob


People also ask

How do I create a folder in Visual Studio project?

Adding folders#The File > Add Folder to Workspace command brings up an Open Folder dialog to select the new folder. Once a root folder is added, the Explorer will show the new folder as a root in the File Explorer. You can right-click on any of the root folders and use the context menu to add or remove folders.

Is there a hotkey for new folder?

Press the File Explorer keystroke CTRL+SHIFT+N to create a new folder.

What is Ctrl Shift F in Visual Studio?

Ctrl-Shift-F is used to find all the ocuurance of a string with in entire solution and display find result window as shown below. Ctrl-F is used to find a string in the current document, project and all open documents one by one.


3 Answers

You can add a shortcut by yourself. ToolsOptionsEnvironmentKeyboard → select Project.NewFolder and assign a shortcut.

like image 181
doblak Avatar answered Oct 19 '22 13:10

doblak


Alt, v, p to activate solution explorer.

Use the arrow keys to select the project to which you want to add the folder.

Alt, p, d to create the new folder

like image 38
79E09796 Avatar answered Oct 19 '22 13:10

79E09796


Activate Solution Explorer (Ctrl + Alt + L) or Sync to Solution Explorer (Alt + Shift + L), then hit Alt + Ins (ReSharper Generate command).

like image 22
Ilya Ryzhenkov Avatar answered Oct 19 '22 14:10

Ilya Ryzhenkov