This is only a minor annoyance but if I can figure this out I'll be very happy.

Is it possible to change the default project directory in Netbeans 6.7? I don't know if it's relevant but I have the PHP Netbeans distro.

Thanks!

link|improve this question

73% accept rate
feedback

7 Answers

up vote 5 down vote accepted

I believe that Netbeans will remember where your last project was created and uses that as its default. So if you create a project and choose a different directory than the default, then that directory will now be the default.

link|improve this answer
This is partly true. When you enter the "Name and Location" section of the new project wizard 'Sources' defaults to a hard coded location, but if I click the browse button next to sources it defaults to the last folder used which is pretty good. I feel like I'm being super anal. – camomileCase Aug 12 '09 at 16:07
No you're not. I also would like a way to change it for good. Not just remember last location. – didibus Feb 23 '10 at 0:18
feedback

In new netbeans 7 search file: D:\Users\YourWindowsUserName\.netbeans\7.0\config\Preferences\org\netbeans\modules\projectui.properties

Delete: *RecentProjectsDisplayNames.*8, *RecentProjectsIcons.*8, *recentProjectsURLs.*8 for cleaning recent projects.

Change projectsFolder for default projects folder when creating new one

if i helped you +1 me, because i cant even comment stackoverflow.

link|improve this answer
feedback

Under Linux, you can change it in the Netbeans configuration directory: .netbeans/6.8/config/Preferences/org/netbeans/modules/projectui.properties

link|improve this answer
feedback

I use Netbeans 7.0.1 on Windows 7. For me the projecui.properties file was in C:\users.netbeans\7.0\config\Preferences\org\netbeans\modules\ directory. About the fourth line down is a property called "projectsFolder". Just change that to the folder you want and you're done! Caveat: this is Java, so if you have a backslash, you have to double it up (C:\folder would be C:\folder). It seems like I did this before within the application itself, but I could not for the life of me find it. I realize this is an old thread, but it was my first hit googling my problem, so I'm sure others will as well. -Mike

link|improve this answer
feedback

Instructions for Mac, based on some of the answers above:

Make sure NetBeans is closed.

On a Mac, the edit ~/.netbeans/7.0/config/Preferences/org/netbeans/modules/projectui.properties

Look for a line that starts with projectsFolder=

Example:

projectsFolder=/Users/<your username>/NetBeansProjects

If this line does not exist, add it with the full path to the directory you want to use. And of course, if it already exists just edit it to your desired path.

link|improve this answer
feedback

On Windows you could find that file in:

[%USERPROFILE%|$Env:UserProfile]\.netbeans\...\projectui.properties

Found this, http://wiki.netbeans.org/FaqAlternateUserdir, but did not have success with it. Neither the command line value nor netbeans_default_userdir from netbeans.conf were persisted to projectui.properties.

link|improve this answer
feedback

If you are asking for how to set the main project so that it runs by default and is debugged by default, then:

Run > Set Main Project, and select your project.

This will highlight in bold the name of the folder of your project in the files windows, usually on your the left hand side.

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.