I've installed NetBeans 6.9.1 and installed few updates for it (Help -> Check for Updates).

Then i've created a new project from existing sources. After few changes i've closed it. And now i am having an error, when trying to open a new project from existing sources (the same files):

"Sources directory is already netbeans project (maybe only in memory)."

After googling it, i noticed it happened not only with me. But i didn't find the correct solution. I've tried to restart IDE, i've tried to restart PC, i've tried to reinstall the NetBeans. Nothing helped.

Any suggestions?

link|improve this question

feedback

6 Answers

up vote 4 down vote accepted

I believe that when you create a NetBeans projects from existing sources, NetBeans uses the same directory to add it's own files: some 'netbeans' folder with .proj files.

So try to copy the entire folder somewhere else, then remove netbeans-specific files. It might work.

link|improve this answer
feedback

Thank you!

I was having the same problem:
Sources directory is already NetBeans project (maybe only in memory).

Netbeans creates a folder in your project named "nbproject". Once you delete that, restart the IDE and you're good to go.

link|improve this answer
feedback

This happens(i believe) because netbeans tries to version control the files created or edited. Under the project folder netbeans create a netbeans directory just delete it . This has been tested in Ubuntu. Then you can import your project if php then php using existing sources.

link|improve this answer
feedback

Click File >> Recent Projects > and you should be able to use edit it again. Hope it helps :)

link|improve this answer
feedback

Usually this happened when we copy source code of a already created project and copied in different folder and try to create a project from it. as netBeans create its folder nbproject in our project folder this folder also get copied with our source code and it give error "Sources directory is already NetBeans project (maybe only in memory)" remove this folder from you newly copied folder and voila you can create a new project.

link|improve this answer
feedback

If this is your own source code and you already have a Netbeans project folder with your source files you should just start with:

File | Open Project... 

not

File | New Project ... 

because the project is not new.

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.