Reputation: 2038
Currently we are developing eclipse RCP application. After the deployment when we try to execute the application the following directories gets generated automatically by eclipse under /home/user (under user home) according to the Operating System
Since we have limited amount of saving space in user.home directory we would like to move the above stated folders to the custom directory. Please let me know how we can configure to provide a custom location for these generated folders.
Eclipse version we use : Eclipse Neon Java Version : 1.8
Upvotes: 2
Views: 112
Reputation: 2352
Add below lines to your <product>.ini
file, it will change all your configuration generation to specified location
-vmargs
-Duser.home=<Your_FolderLocation>
Upvotes: 1