vote up 7 vote down star

I feel ridiculous for asking this because it seems like it should be so simple, however I have been unable to discover an answer to this question.

I have a free standing set of files not affiliated with any C# project at all that reside in a complicated nested directory structure. I want to add them in that format to a different directory in an ASP.NET web application I am working on; while retaining the same structure. So, I copied the folder into the target location of my project and I tried to “add existing item” only to lose the previous folder hierarchy. Usually I have re-created the directories by hand, copied across on a one-to-one basis, and then added existing items. There are simply too many directories/items in this case.

So how do you add existing directories and files in Visual Studio 2008?

flag

4 Answers

vote up 6 vote down check

drag the files / folder from windows explorer into the solution explorer. it will add them all.

link|flag
vote up 0 vote down

@Darren Kopp That does not add the files & folders to your solution.

I already copied using explorer.

link|flag
drag the folder. 100% sure this works, because i do it alll the time. – Darren Kopp Sep 11 '08 at 22:13
Oh, duh. From an explorer window into the IDE! I'll try it right now, but that will probably work. Change your answer to describe that and I'll accept. – Ian Patrick Hughes Sep 11 '08 at 22:15
vote up 8 vote down

Enable "Show All Files" for the specific project (you might need to hit "Refresh" to see them)**. The folders/files that are not part of your project appear slightly "lighter" in the project tree. Right click the folders/files you want to add and click "Include In Project". It will recursively add folders/files to the project.

** - these buttons are located on the mini Solution Explorer toolbar.

link|flag
also works. didn't think about this. – Darren Kopp Sep 11 '08 at 22:21
Don't feel bad I used this when a project required reference to an external assembly that was included in source control and I totally didn't think to do it this way. My brain isn't working today. – Ian Patrick Hughes Sep 11 '08 at 23:24
vote up 0 vote down

Brutally simple! Thanks.

link|flag
Yeah, I felt silly not knowing this one. However, now I use it all of the time. – Ian Patrick Hughes May 20 at 15:03

Your Answer

Get an OpenID
or

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