So the issue is simple really, instead of creating folders in visual studio, i create a directory structure for my project on the file system. How to i include all the folders and files in a project, keeping the structure?

If i "Add Existing File" on a folder named Services and navigate to a file in the directory structure .. Services > AccountManagement > CreateAccount.cs it appears in visual studio like so : Services > CreateAccount.cs. I do not want this.

I have an entire directory structure worked out already, as I am mimicking our client developers using the same structure for organization. How do i add all the folders and files to the project in Visual Studio? Or do i have to do what most MS users do and "put up with it" and recreate each and every folder through visual studio?

link|improve this question

76% accept rate
feedback

3 Answers

up vote 47 down vote accepted

You need to put your directory structure in your project directory. And then click "Show All Files" icon in the top of Solution Explorer toolbox. After that, the added directory will be shown up. You will then need to select this directory, right click, and choose "Include in Project."

alt text

link|improve this answer
Thanks - like Brian this has frustrated me for a long time. – Guy Dec 26 '08 at 17:15
Nice one , saved me a lot of time. Cheers – Rich Oct 19 '10 at 19:41
Thanks a million. I was gettin frustrated while adding directories manually. – Shekhar Nov 26 '10 at 6:48
1  
Is there a way to do this with a directory (tree) outside of the project directory? – imre May 1 '11 at 18:36
nice! By learning this one thing alone my day has been especially productive! Can't believe I've used VS so long and never knew this. – qes Oct 25 '11 at 4:38
show 3 more comments
feedback

You can also drag'n'drop the folder from windows explorer onto your visual studio solution window.

link|improve this answer
This does not work in my installation of VS 2010 on Vista Ultimate 64 bit. – John Melville Apr 6 '11 at 3:14
No, does not work in my VS 2010 installation on Windows 7 either. – AH. Nov 15 '11 at 10:30
Confirming this doesn't work in VS 2010 (non-Administrator mode) too – David Gardiner Mar 23 at 6:24
feedback

http://www.devx.com/vb2themax/Tip/18856

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.