Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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 do 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 Microsoft users do and "put up with it" and recreate each and every folder through Visual Studio?

share|improve this question

3 Answers

up vote 118 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

share|improve this answer
12  
Is there a way to do this with a directory (tree) outside of the project directory? – imre May 1 '11 at 18:36
Is there a way to do this for a folder that is NOT a subdirectory of where your project is? i.e.: Have E:\ProjectX\project.vcproj include the folder E:\Common*.cs ?? – Matt Connolly Feb 28 '12 at 1:00
Almost works. I can see the directory tree, and add multiple files, but it won't let me add a whole directory including sub-trees. – ManicBlowfish May 9 '12 at 16:44

You can also drag and drop the folder from Windows Explorer onto your Visual Studio solution window.

share|improve this answer
2  
This does not work in my installation of VS 2010 on Vista Ultimate 64 bit. – John Melville Apr 6 '11 at 3:14
3  
No, does not work in my VS 2010 installation on Windows 7 either. – AH. Nov 15 '11 at 10:30
2  
Confirming this doesn't work in VS 2010 (non-Administrator mode) too – David Gardiner Mar 23 '12 at 6:24
   
I don't think you guys are doing it right. VS 2010 does support folder drag n drop. I do it all the time to include my tool-kits. You have to make sure that you drop into the project tree. The solution panel and the solution node itself will not receive the drop. The OS is irrelevant here, but for doubters, I use Windows 7 64 bit. – Gavin Williams May 31 '12 at 4:34
1  
"Solution Items" are different than adding items to a project. Solution Items are a special folder within the VS solution. – Todd Smith Oct 16 '12 at 0:11
show 1 more comment

As far as I can tell, the only way to do this in VS2010 is akin to the drag and drop method. Right click the solution to which you want to add a project. The application menu will have an add ... item. Opening that, you find that one of the options is to add an existing project to the solution.

In the dialog box that opens, navigate to the folder containing the project file for the solution and select it. VS will, as part of importing that project file, also import the entire directory and, I assume any subordinate directories which are part of that project.

As this does require an existing project file, it won't be impossible to import a directory tree until that tree has been converted to a project.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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