Reputation:
In the Eclipse Java IDE does there exist a (built-in) build variable which references the workspace's root directory?
Upvotes: 1
Views: 372
Reputation: 38163
workspace_loc
:
Returns the absolute file system path of the workspace root. When an argument is specified, the absolute file system path of the resource identified by a workspace relative path is returned.
Upvotes: 2
Reputation: 46395
I don't think, there exists such variable.
But, you can create your own workspace directory, and specify that location in the command line of your eclipse.exe, using
"-data <path to your workspace>".
Upvotes: 0