I'd like to change the Source Folder for a PHP project that I have set up in NetBeans 6.9. It doesn't look like NetBeans offers any easy way to do this. Does anybody know a way to make this happen?
Thanks...
I'd like to change the Source Folder for a PHP project that I have set up in NetBeans 6.9. It doesn't look like NetBeans offers any easy way to do this. Does anybody know a way to make this happen?
Thanks...
I've played around with this a bit and found out how to change the Source Folder for a PHP NetBeans project that has already been created. I'm using NetBeans 6.9 on Ubuntu.
I remember trying to do this with NetBeans 6.8 and ending up with various errors like project scans never completing and such.
However, it turns out that this time it was quite easy to do.
I had the nbproject
folder inside my source folder. All I had to do was close the project and NetBeans itself, move the nbproject
folder into the new source folder and restart NetBeans again. The project was re-scanned and everything seems to be working.
If you're trying to do this and you had the nbproject
folder outside of your source folder, it would be worth looking at nbproject/project.properties
file.
There's a line there with src.dir=
on it. You should be able to edit this line to update the source location.
In my case I had src.dir=.
, which means the Source Folder was set to be whichever folder is parent to the nbproject
folder.
src.dir=./Source
means a directory besides nbproject
. –
Bailee In Ubuntu 11.10 (with a standard script installed version of Netbeans 7.1.1), look in the ~/NetBeansProjects// folder to find the "project.properties" file.
Open this up in your favorite text editor and modify the file path "src.dir=" to your heart's content.
Did you check under the menu [Run] --> [Set project configuration] --> [Customize] you have plenty of options to change there, it is easy than that.
Good luck
If your project folder is not inside the source folder,
move your source, then in your project's folder find the file named:
project.properties
Open with a text editor and edit the line:
src.dir=your/source/folder
WARNING: Please note that changing src.dir re-opening and rescanning will cause all Netbeans file change history to be lost! Depending on your work style this can cause quite some loss of history, which might or might not be important to you, especially when you don't frequently submit changes to your repository.
Solved here already How to change the default Netbeans 7 project directory?
© 2022 - 2024 — McMap. All rights reserved.
nbproject
folder or modifysrc.dir=
in theproject.properties
file, either way requires a restart of Netbeans, based on my findings. – Lit