I am a Java novice
I am using Eclipse and I have a project (say Main Project) which has in its build path another project (let's call it Second Project).
I need to write in the directories section of the properties file of the Main Project the address of certain files which are part of the Second Project (and as result stored in the Second directory).
Considering the string properties.dir = ./proj/properties
which is used to reference a directory named properties
in the Main project, what should I use if this is in the Second project?
The string properties.dir = Second/proj/properties
wouldn't do the job...